We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eed7814 commit 215a2a3Copy full SHA for 215a2a3
1 file changed
.github/workflows/python-compat.yml
@@ -6,19 +6,27 @@ on:
6
7
jobs:
8
smoke:
9
- runs-on: ubuntu-latest
10
strategy:
11
fail-fast: false
12
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"
+ include:
+ - python-version: "3.7"
+ runner: ubuntu-22.04
+ - python-version: "3.8"
+ runner: ubuntu-latest
+ - python-version: "3.9"
+ - python-version: "3.10"
+ - python-version: "3.11"
22
23
+ - python-version: "3.12"
24
25
+ - python-version: "3.13"
26
27
+ - python-version: "3.14"
28
29
+ runs-on: ${{ matrix.runner }}
30
31
steps:
32
- uses: actions/checkout@v4
0 commit comments