Skip to content

Commit

Permalink
Merge pull request #269 from corenting/ci/3.12-release
Browse files Browse the repository at this point in the history
chore(ci): test against 3.12.0
  • Loading branch information
corenting authored Oct 6, 2023
2 parents 55c6a31 + fd80eda commit 5b289b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12.0-rc.1"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
if: ${{ matrix.python-version != '3.12.0-rc.1' }} # remove when codeql is fixed on 3.12
if: ${{ matrix.python-version != '3.12' }} # remove when codeql is fixed on 3.12
with:
languages: python
- name: Install Poetry
Expand All @@ -45,7 +45,7 @@ jobs:
run: make test
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
if: ${{ matrix.python-version != '3.12.0-rc.1' }} # remove when codeql is fixed on 3.12
if: ${{ matrix.python-version != '3.12' }} # remove when codeql is fixed on 3.12
- name: Codecov
uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit 5b289b3

Please sign in to comment.