Skip to content

Commit 7158943

Browse files
Style check error codes
1 parent 8f19d12 commit 7158943

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/style_checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
rustup override set nightly
3636
- name: Run clippy manually
3737
run: |
38-
cargo +nightly clippy --workspace --all-targets --all-features
39-
cargo +nightly clippy --workspace --all-targets --no-default-features
40-
cargo +nightly clippy --workspace --all-targets --no-default-features --features=gstreamer
41-
cargo +nightly clippy --workspace --all-targets --no-default-features --features=pushnoti
38+
cargo +nightly clippy --workspace --all-targets --all-features || exit 1
39+
cargo +nightly clippy --workspace --all-targets --no-default-features || exit 1
40+
cargo +nightly clippy --workspace --all-targets --no-default-features --features=gstreamer || exit 1
41+
cargo +nightly clippy --workspace --all-targets --no-default-features --features=pushnoti || exit 1
4242
4343
check_fmt:
4444
needs: pre_job

0 commit comments

Comments
 (0)