GitHub Action to run tox

This commit is contained in:
Christian Clauss 2021-11-03 16:17:45 +01:00 committed by Brett Randall
parent a16b8975a9
commit f587bfaf0f

View File

@ -7,6 +7,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install --upgrade pip
- run: pip install tox
- run: tox -e lint
tox-docs-lint:
@ -15,6 +16,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install --upgrade pip
- run: pip install tox
- run: tox -e docs-lint
tox-pycodestyle:
@ -23,6 +25,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install --upgrade pip
- run: pip install tox
- run: tox -e pycodestyle
tox: