Skip to content

Commit 1971cca

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

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/tests.yml

+8
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,15 @@ 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@v4
16+
with:
17+
python-version: ${{ matrix.python }}
1018
- uses: actions/checkout@v3
1119
- run: python3 util/install_deps.py
1220
- run: pip install .

0 commit comments

Comments
 (0)