Skip to content

Commit c6fd727

Browse files
committed
Test on multiple versions of Python.
1 parent 88de08b commit c6fd727

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/tests.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,19 @@ jobs:
66
test:
77
runs-on: ubuntu-latest
88

9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
python: ['3.10', 3.11, 3.12, pypy-3.10]
13+
914
steps:
15+
- uses: actions/setup-python@v5
16+
with:
17+
python-version: ${{ matrix.python }}
18+
- run: pip install pip==24.0
19+
- run: pip install wheel
1020
- uses: actions/checkout@v3
11-
- run: python3 util/install_deps.py
21+
- run: python util/install_deps.py
1222
- run: pip install .
1323
- uses: actions/cache@v3
1424
with:

0 commit comments

Comments
 (0)