Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run unit tests GH Actions with tox #139

Merged
merged 8 commits into from
Jun 9, 2022
Prev Previous commit
Next Next commit
wip -- whoops, update python versions in workflow as well
jonprindiville committed Apr 13, 2022
commit ea719540a557bdfe2447c24c2f6fc59549c14b50
10 changes: 9 additions & 1 deletion .github/workflows/tox-unit-tests.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['2.7', '3.9']
# Note that this list of versions should correspond with what's in tox.ini
python-version:
- '2.7'
- '3.5'
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'

steps:
- uses: actions/checkout@v1
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@ envlist = py{27,35,36,37,38,39,310}
skip_missing_interpreters = True

[gh-actions]
# Note that this list of versions should correspond with what's in the GH workflow config
python =
2.7: py27
3.5: py35