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 8214809 commit 1360218Copy full SHA for 1360218
.github/workflows/tox.yml
@@ -8,7 +8,11 @@ jobs:
8
runs-on: ubuntu-latest
9
strategy:
10
matrix:
11
- python-version: ['3.10', '3.11', '3.12', '3.14']
+ python-version:
12
+ - '3.10'
13
+ # - '3.11'
14
+ # - '3.12'
15
+ # - '3.14'
16
17
steps:
18
- uses: actions/checkout@v5
@@ -25,4 +29,5 @@ jobs:
25
29
python -m pip install --upgrade pip setuptools wheel
26
30
python -m pip install tox tox-gh-actions
27
31
- name: Test with tox
28
- run: tox
32
+ # run only the env that matches the runner Python (e.g. 3.10 -> py310)
33
+ run: tox -e ${{ 'py' + matrix.python-version.replace('.','') }}
0 commit comments