Skip to content

Commit

Permalink
Add later python versions to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wesley van Lee committed Oct 15, 2024
1 parent 6f7e131 commit e0e01ac
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,15 @@ jobs:

test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: pip install -r requirements-tests.txt
- name: Test
Expand Down

0 comments on commit e0e01ac

Please sign in to comment.