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 59c98d8 commit aed460a
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,22 @@ jobs:
test:
runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v3
- run: python3 util/install_deps.py
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- run: pip install
pip==24.0 setuptools==69.1.1 wheel==0.42.0 pytest==8.0.2
- run: python util/install_deps.py
- run: pip install .
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
key: cache-dir
path: /home/runner/.cache/simalq
- run: pip install pytest
- run: pytest tests

0 comments on commit aed460a

Please sign in to comment.