Skip to content

Commit

Permalink
Style check error codes
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumEntangledAndy committed Aug 2, 2024
1 parent 8f19d12 commit 7158943
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/style_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
rustup override set nightly
- name: Run clippy manually
run: |
cargo +nightly clippy --workspace --all-targets --all-features
cargo +nightly clippy --workspace --all-targets --no-default-features
cargo +nightly clippy --workspace --all-targets --no-default-features --features=gstreamer
cargo +nightly clippy --workspace --all-targets --no-default-features --features=pushnoti
cargo +nightly clippy --workspace --all-targets --all-features || exit 1
cargo +nightly clippy --workspace --all-targets --no-default-features || exit 1
cargo +nightly clippy --workspace --all-targets --no-default-features --features=gstreamer || exit 1
cargo +nightly clippy --workspace --all-targets --no-default-features --features=pushnoti || exit 1
check_fmt:
needs: pre_job
Expand Down

0 comments on commit 7158943

Please sign in to comment.