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

Commit 24f753a

Browse files
committed
ci: fix incorrect python version being used in github workflow
1 parent 80ca7b0 commit 24f753a

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

.github/workflows/pr.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,19 @@ 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
15-
- run: pipx install poetry==1.7.1
1615
- uses: actions/setup-python@v5
1716
with:
1817
python-version: ${{ matrix.python-version }}
19-
cache: poetry
18+
# cache: poetry
19+
- run: pip install poetry==1.7.1
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)