Skip to content

Commit 59de359

Browse files
committed
update test matrix
1 parent ca87285 commit 59de359

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ on:
1111

1212
jobs:
1313
test:
14+
strategy:
15+
matrix:
16+
python-version: ["pypy3.10", "pypy3.11", "3.10", "3.11", "3.12", "3.13"]
1417
name: test
1518
runs-on: ubuntu-latest
1619
steps:
@@ -19,10 +22,13 @@ jobs:
1922
with:
2023
fetch-depth: 0
2124

22-
- name: Set up Python 3.13
25+
- name: Set up Python ${{ matrix.python-version }}
2326
uses: actions/setup-python@v4
2427
with:
25-
python-version: "3.13"
28+
python-version: ${{ matrix.python-version }}
29+
30+
- name: Display Python version
31+
run: python -c "import sys; print(sys.version)"
2632

2733
- name: Install PDM
2834
run: |

0 commit comments

Comments
 (0)