We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce9e647 commit d13865dCopy full SHA for d13865d
.github/workflows/main.yml
@@ -17,26 +17,27 @@ jobs:
17
flake8
18
test:
19
needs: lint
20
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
21
strategy:
22
fail-fast: false
23
matrix:
24
include:
25
- os: ubuntu-22.04
26
python-version: "3.9"
27
toxenv: py39
28
- - os: ubuntu-22.04
+ - os: ubuntu-24.04
29
python-version: "3.10"
30
toxenv: py310
31
32
python-version: "3.11"
33
toxenv: py311
34
35
python-version: "3.12"
36
toxenv: py312
37
38
python-version: "3.13"
39
toxenv: py313
40
+
41
env:
42
TOXENV: ${{ matrix.toxenv }}
43
steps:
0 commit comments