Skip to content
This repository was archived by the owner on Apr 2, 2025. It is now read-only.

Commit 3b7de57

Browse files
committed
fixup! ci: fix incorrect python version being used in github workflow
1 parent a9a7502 commit 3b7de57

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/pr.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.12"]
12+
python-version: ["3.12", "3.13"]
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-python@v5
@@ -20,12 +20,8 @@ jobs:
2020
- name: Install dependencies
2121
run: poetry install --with=dev
2222
- name: Lint code
23-
if: ${{ matrix.python-version == 3.12 }}
24-
run: |
25-
python -m pip install pre-commit
26-
pre-commit run --all-files
23+
run: pre-commit run --all-files
2724
- name: Type-check code
28-
if: ${{ matrix.python-version == 3.12 }}
2925
run: poetry run mypy src
30-
- name: Run tests
31-
run: poetry run nox
26+
# - name: Run tests
27+
# run: poetry run nox

0 commit comments

Comments
 (0)