Skip to content

Commit 7de9267

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 7de9267

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tox.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name: Tox
22

33
on:
4+
- push
45
- pull_request
56

67
jobs:
78
build:
89
runs-on: ubuntu-latest
910
strategy:
1011
matrix:
11-
python-version:
12-
- '3.10'
12+
python-version: ['3.10']
1313
# - '3.11'
1414
# - '3.12'
1515
# - '3.14'
@@ -30,4 +30,4 @@ jobs:
3030
python -m pip install tox tox-gh-actions
3131
- name: Test with tox
3232
# run only the env that matches the runner Python (e.g. 3.10 -> py310)
33-
run: tox -e ${{ 'py' + matrix.python-version.replace('.','') }}
33+
run: tox -e ${{ format('py{0}', matrix.python-version.replace('.','')) }}

0 commit comments

Comments
 (0)