Skip to content

Commit

Permalink
fix: ensure certain checks are run on py 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
sijis committed Oct 28, 2024
1 parent f1c81ef commit 0e8deae
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 @@ -19,9 +19,9 @@ jobs:
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.2.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5.2.0
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -41,16 +41,16 @@ jobs:
tox -e py
- name: Check Distribution
if: ${{ matrix.python-version }} == '3.12'
if: ${{ matrix.python-version == '3.12' }}
run: |
tox -e dist-check
- name: Codestyle
if: ${{ matrix.python-version }} == '3.12'
if: ${{ matrix.python-version == '3.12' }}
run: |
tox -e codestyle
- name: Security
if: ${{ matrix.python-version }} == '3.12'
if: ${{ matrix.python-version == '3.12' }}
run: |
tox -e security

0 comments on commit 0e8deae

Please sign in to comment.