added github workflow

This commit is contained in:
Brian Muller 2021-04-12 11:49:42 -04:00
parent 5053e5e61c
commit 4f7959f73c
No known key found for this signature in database
GPG Key ID: 19A500213CC84E3B

16
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,16 @@
name: ci
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.5', '3.8', '3.9', 'pypy-3.9']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: pip install . && pip install -r dev-requirements.txt
- run: pytest