Skip to content

Commit

Permalink
feat(ci): fix missing matrix version in action
Browse files Browse the repository at this point in the history
  • Loading branch information
cboin1996 authored Dec 19, 2024
1 parent d9c5ec9 commit e963fe1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down Expand Up @@ -45,4 +45,4 @@ jobs:
name: pytest-coverage-html-${{ matrix.python-version }}
path: htmlcov/
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}
if: ${{ always() }}

0 comments on commit e963fe1

Please sign in to comment.