diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 3e79885..0c49924 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -17,11 +17,11 @@ jobs: python_version: '3.11' - name: Run pre-commit hooks - run: SKIP=ruff pre-commit run --all-files + run: SKIP=ruff-lint pre-commit run --all-files # Run `ruff` using github formatting to enable automatic inline annotations. - name: Run ruff - run: "ruff check --format=github ." + run: "ruff check --output-format=github ." artifact: name: Generate & upload pull request artifacts |