Skip to content

Commit e4cb28a

Browse files
committed
gh: add python 3.13 to matrix
1 parent cd96f39 commit e4cb28a

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/ci.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Python
1919
uses: actions/setup-python@v4
2020
with:
21-
python-version: "3.10"
21+
python-version: "3.13"
2222

2323
- name: Install dependencies
2424
run: |
@@ -30,14 +30,21 @@ jobs:
3030
3131
check:
3232
runs-on: ubuntu-latest
33+
strategy:
34+
matrix:
35+
python-version:
36+
- "3.10"
37+
- "3.11"
38+
- "3.12"
39+
- "3.13"
3340
steps:
3441
- name: Repository checkout
3542
uses: actions/checkout@v3
3643

3744
- name: Set up Python
3845
uses: actions/setup-python@v4
3946
with:
40-
python-version: "3.10"
47+
python-version: ${{ matrix.python-version }}
4148

4249
- name: Install dependencies
4350
run: |
@@ -55,6 +62,7 @@ jobs:
5562
- "3.10"
5663
- "3.11"
5764
- "3.12"
65+
- "3.13"
5866
steps:
5967
- name: Repository checkout
6068
uses: actions/checkout@v3

0 commit comments

Comments
 (0)