Skip to content

Commit f36abf9

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

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/tests.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,18 @@ 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
1019
- uses: actions/checkout@v3
11-
- run: python3 util/install_deps.py
20+
- run: python util/install_deps.py
1221
- run: pip install .
1322
- uses: actions/cache@v3
1423
with:

0 commit comments

Comments
 (0)