Skip to content

Commit

Permalink
chore: move testing/checking to python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
sijis committed Oct 26, 2024
1 parent 43bd353 commit 4edf215
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,26 +41,26 @@ jobs:
tox -e py
- name: Check Distribution
if: ${{ matrix.python-version == '3.9' }}
if: ${{ matrix.python-version == '3.12' }}
run: |
tox -e dist-check
- name: Codestyle
if: ${{ matrix.python-version == '3.9' }}
if: ${{ matrix.python-version == '3.12' }}
run: |
tox -e codestyle
- name: Lint - sort
if: ${{ matrix.python-version == '3.9' }}
if: ${{ matrix.python-version == '3.12' }}
run: |
tox -e sort
- name: Security
if: ${{ matrix.python-version == '3.9' }}
if: ${{ matrix.python-version == '3.12' }}
run: |
tox -e security
- name: Docs
if: ${{ matrix.python-version == '3.9' }}
if: ${{ matrix.python-version == '3.12' }}
run: |
tox -e docs

0 comments on commit 4edf215

Please sign in to comment.