quality: we're in python 3.11 bruh

This commit is contained in:
Alexandre Aubin 2023-09-27 20:08:38 +02:00
parent 37331cb1d6
commit fc1eef2d92

View file

@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: [3.9] python-version: [3.11]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
@ -26,7 +26,7 @@ jobs:
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install tox tox-gh-actions pip install tox tox-gh-actions
- name: Test with tox - name: Test with tox
run: tox -e py39-pytest run: tox -e py311-pytest
invalidcode: invalidcode:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -44,6 +44,6 @@ jobs:
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install tox tox-gh-actions pip install tox tox-gh-actions
- name: Linter - name: Linter
run: tox -e py39-invalidcode run: tox -e py311-invalidcode
- name: Mypy - name: Mypy
run: tox -e py39-mypy run: tox -e py311-mypy