We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7a0f04 commit 72d3b6dCopy full SHA for 72d3b6d
.github/workflows/pr.yml
@@ -17,15 +17,12 @@ jobs:
17
with:
18
python-version: ${{ matrix.python-version }}
19
cache: poetry
20
- - uses: astral-sh/setup-uv@v3
21
- with:
22
- enable-cache: true
23
- - name: Sync
24
- run: uv sync
25
- name: Install dependencies
26
run: poetry install --with=dev
27
- - name: Execute linters & type checkers
+ - name: Lint code
28
if: ${{ matrix.python-version == 3.12 }}
29
- run: uv run pre-commit run --all-files
+ run: |
+ python -m pip install pre-commit
+ pre-commit run --all-files
30
- name: Run tests
31
run: poetry run nox
0 commit comments