Skip to content

Commit 26c26d7

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

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/tests.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,17 @@ 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 }}
1018
- uses: actions/checkout@v3
11-
- run: python3 util/install_deps.py
19+
- run: python util/install_deps.py
1220
- run: pip install .
1321
- uses: actions/cache@v3
1422
with:

0 commit comments

Comments
 (0)