Skip to content

Commit 61deab3

Browse files
committed
Fix Clippy lints not causing CI workflow failure
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.
1 parent d30da6e commit 61deab3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/oxipng.yml

+1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ jobs:
125125
- name: Run Clippy for all feature combinations
126126
if: matrix.target == 'x86_64-unknown-linux-gnu'
127127
run: >
128+
set -o pipefail;
128129
cargo hack clippy --no-deps --all-targets --feature-powerset --exclude-features sanity-checks --message-format=json -- -D warnings
129130
| clippy-sarif
130131
| tee clippy-results.sarif

0 commit comments

Comments
 (0)