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