Skip to content

Commit

Permalink
Switch automated testing to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
thejohnfreeman committed Feb 5, 2024
1 parent 775c00e commit 0d6effd
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 83 deletions.
46 changes: 0 additions & 46 deletions .appveyor.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: test
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
strategy:
matrix:
platform:
- ubuntu
- macos
- windows
python:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
runs-on: ${{ matrix.platform }}-latest
steps:
- uses: actions/checkout@v4
- run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'poetry'
- run: poetry install --only test
- run: poetry run pytest tests
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

8 changes: 0 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,6 @@ typeclasses

Extensible methods for Python mimicking typeclasses in Haskell.

.. image:: https://travis-ci.org/thejohnfreeman/python-typeclasses.svg?branch=master
:target: https://travis-ci.org/thejohnfreeman/python-typeclasses
:alt: Build status: Linux and OSX

.. image:: https://ci.appveyor.com/api/projects/status/github/thejohnfreeman/python-typeclasses?branch=master&svg=true
:target: https://ci.appveyor.com/project/thejohnfreeman/python-typeclasses
:alt: Build status: Windows

.. .. image:: https://readthedocs.org/projects/python-typeclasses/badge/?version=latest
.. :target: https://python-typeclasses.readthedocs.io/
.. :alt: Documentation status
Expand Down

0 comments on commit 0d6effd

Please sign in to comment.