Skip to content

Commit

Permalink
Test on multiple versions of Python.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodiologist committed Feb 28, 2024
1 parent 88de08b commit f36abf9
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,18 @@ jobs:
test:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
python: ['3.10', 3.11, 3.12, pypy-3.10]

steps:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- run: pip install pip==24.0
- uses: actions/checkout@v3
- run: python3 util/install_deps.py
- run: python util/install_deps.py
- run: pip install .
- uses: actions/cache@v3
with:
Expand Down

0 comments on commit f36abf9

Please sign in to comment.