Skip to content

Commit e917e14

Browse files
committed
cosmetics
1 parent 70fe74f commit e917e14

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

.github/workflows/test.yml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,16 @@ jobs:
66
test-ubuntu-python-newest:
77
name: Test Ubuntu:latest Python:newest
88
needs: lint
9-
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
os: [ubuntu-latest]
12+
python-version: ['3.14']
13+
runs-on: ${{ matrix.os }}
1014
steps:
1115
- uses: actions/checkout@v4
1216
- uses: actions/setup-python@v5
1317
with:
14-
python-version: '3.14'
18+
python-version: ${{ matrix.python-version }}
1519
- name: Install Test dependencies
1620
run: pip install tox
1721
- name: Test with newest Python on latest Ubuntu
@@ -20,9 +24,13 @@ jobs:
2024
test-python-32bit:
2125
name: Test Ubuntu:latest Python:32-bit
2226
needs: [lint, test-ubuntu-python-newest]
23-
runs-on: ubuntu-latest
27+
strategy:
28+
matrix:
29+
os: [ubuntu-latest]
30+
python-version: ['3.11']
31+
runs-on: ${{ matrix.os }}
2432
container:
25-
image: i386/python:3.11
33+
image: i386/python:${{ matrix.python-version }}
2634
volumes:
2735
- /home/runner/work/_temp:/__e/node20
2836
- /home/runner/work/_temp:/__e/node24
@@ -62,12 +70,16 @@ jobs:
6270
test-ubuntu-python-oldest:
6371
name: Test Ubuntu:latest Python:oldest
6472
needs: [lint, test-ubuntu-python-newest, test-python-32bit]
65-
runs-on: ubuntu-latest
73+
strategy:
74+
matrix:
75+
os: [ubuntu-latest]
76+
python-version: ['3.9']
77+
runs-on: ${{ matrix.os }}
6678
steps:
6779
- uses: actions/checkout@v4
6880
- uses: actions/setup-python@v5
6981
with:
70-
python-version: '3.9'
82+
python-version: ${{ matrix.python-version }}
7183
- name: Install Test dependencies
7284
run: pip install tox
7385
- name: Test with oldest Python on Ubuntu

0 commit comments

Comments
 (0)