Skip to content

Merge pull request #8 from TimMonko/patch-1 #54

Merge pull request #8 from TimMonko/patch-1

Merge pull request #8 from TimMonko/patch-1 #54

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
name: Test py${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U pip
pip install tox tox-gh-actions
- name: Test
run: tox -e py
- name: Coverage
uses: codecov/codecov-action@v2