We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1360218 commit 4637f5dCopy full SHA for 4637f5d
.github/workflows/tox.yml
@@ -8,11 +8,13 @@ jobs:
8
runs-on: ubuntu-latest
9
strategy:
10
matrix:
11
- python-version:
12
- - '3.10'
13
- # - '3.11'
14
- # - '3.12'
15
- # - '3.14'
+ include:
+ - python-version: '3.10'
+ tox-env: 'py310'
+ # - python-version: '3.11'
+ # tox-env: 'py311'
16
+ # - python-version: '3.12'
17
+ # tox-env: 'py312'
18
19
steps:
20
- uses: actions/checkout@v5
@@ -30,4 +32,4 @@ jobs:
30
32
python -m pip install tox tox-gh-actions
31
33
- name: Test with tox
34
# run only the env that matches the runner Python (e.g. 3.10 -> py310)
- run: tox -e ${{ 'py' + matrix.python-version.replace('.','') }}
35
+ run: tox -e ${{ matrix.tox-env }}
0 commit comments