GitHub Action to run tox

This commit is contained in:
Christian Clauss 2021-09-07 07:34:11 +02:00 committed by GitHub
parent 358ecc7821
commit 97e4cf6344
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
.github/workflows/tox.yml vendored Normal file
View file

@ -0,0 +1,16 @@
name: tox
on: [push, pull_request]
jobs:
tox:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ['3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- run: pip install tox
- run: tox -e py