mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
quality: we're in python 3.11 bruh
This commit is contained in:
parent
37331cb1d6
commit
fc1eef2d92
1 changed files with 4 additions and 4 deletions
8
.github/workflows/tox.yml
vendored
8
.github/workflows/tox.yml
vendored
|
@ -12,7 +12,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: [3.9]
|
||||
python-version: [3.11]
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
|
@ -26,7 +26,7 @@ jobs:
|
|||
python -m pip install --upgrade pip
|
||||
pip install tox tox-gh-actions
|
||||
- name: Test with tox
|
||||
run: tox -e py39-pytest
|
||||
run: tox -e py311-pytest
|
||||
|
||||
invalidcode:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -44,6 +44,6 @@ jobs:
|
|||
python -m pip install --upgrade pip
|
||||
pip install tox tox-gh-actions
|
||||
- name: Linter
|
||||
run: tox -e py39-invalidcode
|
||||
run: tox -e py311-invalidcode
|
||||
- name: Mypy
|
||||
run: tox -e py39-mypy
|
||||
run: tox -e py311-mypy
|
||||
|
|
Loading…
Reference in a new issue