Skip to content

Commit 1360218

Browse files
committed
ci: swap to use tox gh actions instead of the archived coactions dynamic-matrix which wasnt working anymore
1 parent 8214809 commit 1360218

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/tox.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ['3.10', '3.11', '3.12', '3.14']
11+
python-version:
12+
- '3.10'
13+
# - '3.11'
14+
# - '3.12'
15+
# - '3.14'
1216

1317
steps:
1418
- uses: actions/checkout@v5
@@ -25,4 +29,5 @@ jobs:
2529
python -m pip install --upgrade pip setuptools wheel
2630
python -m pip install tox tox-gh-actions
2731
- 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

Comments
 (0)