We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cff3000 commit 5aee9cfCopy full SHA for 5aee9cf
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
@@ -41,10 +42,8 @@ jobs:
41
42
# Use bash to ensure the step fails if any command fails.
43
# PowerShell does not fail on intermediate command failures by default.
44
shell: bash
- run: |
45
- uv run --extra=dev prek run --all-files --hook-stage pre-commit --verbose
46
- uv run --extra=dev prek run --all-files --hook-stage pre-push --verbose
47
- 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
48
env:
49
UV_PYTHON: ${{ matrix.python-version }}
50
# hadolint is not available on Windows.
0 commit comments