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

Commit 72d3b6d

Browse files
Phil Varnerc-wygoda
authored andcommitted
don't use uv
1 parent a7a0f04 commit 72d3b6d

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/pr.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,12 @@ jobs:
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
cache: poetry
20-
- uses: astral-sh/setup-uv@v3
21-
with:
22-
enable-cache: true
23-
- name: Sync
24-
run: uv sync
2520
- name: Install dependencies
2621
run: poetry install --with=dev
27-
- name: Execute linters & type checkers
22+
- name: Lint code
2823
if: ${{ matrix.python-version == 3.12 }}
29-
run: uv run pre-commit run --all-files
24+
run: |
25+
python -m pip install pre-commit
26+
pre-commit run --all-files
3027
- name: Run tests
3128
run: poetry run nox

0 commit comments

Comments
 (0)