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

Commit b34f8d9

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

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/pr.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,21 @@ 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: python -m 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 }}
2423
run: |
2524
python -m pip install pre-commit
2625
pre-commit run --all-files
2726
- name: Type-check code
28-
if: ${{ matrix.python-version == 3.12 }}
2927
run: poetry run mypy src
30-
- name: Run tests
31-
run: poetry run nox
28+
# - name: Run tests
29+
# run: poetry run nox

0 commit comments

Comments
 (0)