Skip to content

Commit 215a2a3

Browse files
committed
ci: run python 3.7 on ubuntu 22.04
1 parent eed7814 commit 215a2a3

1 file changed

Lines changed: 18 additions & 10 deletions

File tree

.github/workflows/python-compat.yml

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,27 @@ on:
66

77
jobs:
88
smoke:
9-
runs-on: ubuntu-latest
109
strategy:
1110
fail-fast: false
1211
matrix:
13-
python-version:
14-
- "3.7"
15-
- "3.8"
16-
- "3.9"
17-
- "3.10"
18-
- "3.11"
19-
- "3.12"
20-
- "3.13"
21-
- "3.14"
12+
include:
13+
- python-version: "3.7"
14+
runner: ubuntu-22.04
15+
- python-version: "3.8"
16+
runner: ubuntu-latest
17+
- python-version: "3.9"
18+
runner: ubuntu-latest
19+
- python-version: "3.10"
20+
runner: ubuntu-latest
21+
- python-version: "3.11"
22+
runner: ubuntu-latest
23+
- python-version: "3.12"
24+
runner: ubuntu-latest
25+
- python-version: "3.13"
26+
runner: ubuntu-latest
27+
- python-version: "3.14"
28+
runner: ubuntu-latest
29+
runs-on: ${{ matrix.runner }}
2230

2331
steps:
2432
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)