We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd96f39 commit e4cb28aCopy full SHA for e4cb28a
.github/workflows/ci.yml
@@ -18,7 +18,7 @@ jobs:
18
- name: Set up Python
19
uses: actions/setup-python@v4
20
with:
21
- python-version: "3.10"
+ python-version: "3.13"
22
23
- name: Install dependencies
24
run: |
@@ -30,14 +30,21 @@ jobs:
30
31
check:
32
runs-on: ubuntu-latest
33
+ strategy:
34
+ matrix:
35
+ python-version:
36
+ - "3.10"
37
+ - "3.11"
38
+ - "3.12"
39
+ - "3.13"
40
steps:
41
- name: Repository checkout
42
uses: actions/checkout@v3
43
44
45
46
47
+ python-version: ${{ matrix.python-version }}
48
49
50
@@ -55,6 +62,7 @@ jobs:
55
62
- "3.10"
56
63
- "3.11"
57
64
- "3.12"
65
58
66
59
67
60
68
0 commit comments