Run tests on python 3.9

This commit is contained in:
Kay0u 2021-09-01 17:00:29 +02:00
parent 4774e2a0a9
commit bdec23b533
No known key found for this signature in database
GPG key ID: AAFEEB16CFA2AE2D

View file

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
python-version: [3.9]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
@ -25,13 +25,13 @@ jobs:
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: tox -e py37-pytest
run: tox -e py39-pytest
invalidcode:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
python-version: [3.9]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
@ -43,4 +43,4 @@ jobs:
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Linter
run: tox -e py37-invalidcode
run: tox -e py39-invalidcode