Skip to content

Commit

Permalink
ci: start testing with Python 3.12 (#558)
Browse files Browse the repository at this point in the history
  • Loading branch information
coryan authored Oct 12, 2023
1 parent 69dd408 commit e8075f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: Unit Tests with Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
Expand All @@ -31,7 +31,7 @@ jobs:
pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: ${{ matrix.python-version == '3.11' }}
if: ${{ matrix.python-version == '3.12' }}
with:
env_vars: OS,PYTHON
fail_ci_if_error: true
Expand Down

0 comments on commit e8075f4

Please sign in to comment.