We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48a276a commit 93d41a3Copy full SHA for 93d41a3
.github/workflows/tests.yml
@@ -10,19 +10,13 @@ jobs:
10
build:
11
strategy:
12
matrix:
13
- version:
14
- - python: "3.7"
15
- ubuntu: "ubuntu-22.04",
16
- - python: "3.8"
17
18
- - python: "3.9",
19
- ubuntu: "ubuntu-latest"
20
- - python: "3.10",
21
22
- - python: "3.11",
23
24
- - python: "3.12"
25
+ version: [
+ { python: "3.7", ubuntu: "ubuntu-22.04" },
+ { python: "3.8", ubuntu: "ubuntu-22.04" },
+ { python: "3.9", ubuntu: "ubuntu-latest" },
+ { python: "3.10", ubuntu: "ubuntu-latest" },
+ { python: "3.11", ubuntu: "ubuntu-latest" },
+ { python: "3.12", ubuntu: "ubuntu-latest" } ]
26
runs-on: ${{ matrix.version.ubuntu }}
27
steps:
28
- uses: actions/checkout@v2
0 commit comments