We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 83479cf + 74763f3 commit c83ee84Copy full SHA for c83ee84
1 file changed
.github/workflows/lint.yml
@@ -19,6 +19,7 @@ jobs:
19
matrix:
20
python-version: ['3.13']
21
platform: [ubuntu-latest, windows-latest]
22
+ hook-stage: [pre-commit, pre-push, manual]
23
24
runs-on: ${{ matrix.platform }}
25
@@ -37,10 +38,8 @@ jobs:
37
38
# Use bash to ensure the step fails if any command fails.
39
# PowerShell does not fail on intermediate command failures by default.
40
shell: bash
- run: |
41
- uv run --extra=dev prek run --all-files --hook-stage pre-commit --verbose
42
- uv run --extra=dev prek run --all-files --hook-stage pre-push --verbose
43
- uv run --extra=dev prek run --all-files --hook-stage manual --verbose
+ run: uv run --extra=dev prek run --all-files --hook-stage ${{ matrix.hook-stage }}
+ --verbose
44
env:
45
UV_PYTHON: ${{ matrix.python-version }}
46
0 commit comments