Skip to content

Commit 534098a

Browse files
committed
Make each version a sub job
1 parent 7fb8b89 commit 534098a

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/run_tox.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,15 @@ jobs:
3636
run: tox run --conf tox_old.ini
3737
tests310-314:
3838
runs-on: ubuntu-latest
39+
strategy:
40+
matrix:
41+
python-version: [ '3.10', '3.11', '3.12', '3.13', '3.14' ]
42+
name: Python ${{ matrix.python-version }} sample
3943
steps:
4044
- uses: actions/checkout@v6
41-
- uses: actions/setup-python@v5
45+
- uses: actions/setup-python@v6
4246
with:
43-
python-version: |
44-
3.10
45-
3.11
46-
3.12
47-
3.13
48-
3.14
47+
python-version: ${{ matrix.python-version }}
4948
- name: Install tox
5049
run: |
5150
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)