Try run tests on multiple versions

This commit is contained in:
Roman Mogylatov 2021-01-25 17:18:34 -05:00
parent 72f081a91d
commit d7927bf735
2 changed files with 6 additions and 3 deletions

View File

@ -6,12 +6,15 @@ jobs:
test-py39: test-py39:
name: Run tests name: Run tests
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-python@v2 - uses: actions/setup-python@v2
with: with:
python-version: 3.9 python-version: ${{ matrix.python-version }}
- run: pip install tox - run: pip install tox
- run: tox - run: tox
env: env:
TOXENV: py39 TOXENV: py${{ matrix.python-version }}

View File

@ -1,6 +1,6 @@
[tox] [tox]
envlist= envlist=
coveralls, pylint, flake8, pydocstyle, py27, py34, py35, py36, py37, py38, pypy, pypy3 coveralls, pylint, flake8, pydocstyle, py27, py34, py35, py36, py37, py3.8, py3.9, pypy, pypy3
[testenv] [testenv]
deps= deps=