Skip to content

Commit d5d405e

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

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/tests.yml

+11-2
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:
10-
- uses: actions/checkout@v3
11-
- run: python3 util/install_deps.py
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-python@v5
17+
with:
18+
python-version: ${{ matrix.python }}
19+
- run: pip install pip==24.0 setuptools==69.1.1 wheel==0.42.0
20+
- run: python util/install_deps.py
1221
- run: pip install .
1322
- uses: actions/cache@v3
1423
with:

0 commit comments

Comments
 (0)