Skip to content

Commit 4637f5d

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

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/tox.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version:
12-
- '3.10'
13-
# - '3.11'
14-
# - '3.12'
15-
# - '3.14'
11+
include:
12+
- python-version: '3.10'
13+
tox-env: 'py310'
14+
# - python-version: '3.11'
15+
# tox-env: 'py311'
16+
# - python-version: '3.12'
17+
# tox-env: 'py312'
1618

1719
steps:
1820
- uses: actions/checkout@v5
@@ -30,4 +32,4 @@ jobs:
3032
python -m pip install tox tox-gh-actions
3133
- name: Test with tox
3234
# run only the env that matches the runner Python (e.g. 3.10 -> py310)
33-
run: tox -e ${{ 'py' + matrix.python-version.replace('.','') }}
35+
run: tox -e ${{ matrix.tox-env }}

0 commit comments

Comments
 (0)