Skip to content

Commit

Permalink
Test with multiple python versions
Browse files Browse the repository at this point in the history
    * .github/workflows/tests.yaml:
  • Loading branch information
jwillemsen committed Nov 29, 2024
1 parent e8ce0ce commit 1f31a0e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,17 @@ jobs:
tests:
runs-on: "ubuntu-latest"
name: Run tests
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]
steps:
- name: Check out code from GitHub
uses: "actions/checkout@v4"
- name: Setup Python
- name: Setup Python ${{ matrix.python-version }}
uses: "actions/setup-python@v5"
with:
python-version: "3.13"
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: |
pip install --constraint=.github/workflows/constraints.txt pip
Expand Down

0 comments on commit 1f31a0e

Please sign in to comment.