Skip to content

Commit

Permalink
Fix Clippy lints not causing CI workflow failure
Browse files Browse the repository at this point in the history
It's easy to miss them out if CI is not aborted on a Clippy lint, and
this behavior change was an unintended regression when CodeQL
integration was added, so let's change it back.
  • Loading branch information
AlexTMjugador committed Jul 28, 2024
1 parent d30da6e commit 61deab3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/oxipng.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ jobs:
- name: Run Clippy for all feature combinations
if: matrix.target == 'x86_64-unknown-linux-gnu'
run: >
set -o pipefail;
cargo hack clippy --no-deps --all-targets --feature-powerset --exclude-features sanity-checks --message-format=json -- -D warnings
| clippy-sarif
| tee clippy-results.sarif
Expand Down

0 comments on commit 61deab3

Please sign in to comment.