Skip to content
Merged
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:
toolchain: stable

- name: Clippy
run: rustup component add clippy && cargo clippy --workspace --all-features --all-targets
run: rustup component add clippy && cargo clippy --all-targets --all-features -- -D warnings

- name: Unused dependencies
run: |
cargo install cargo-machete --locked
cargo machete

- name: Fmt
run: rustup component add rustfmt && cargo fmt --all
run: rustup component add rustfmt && cargo fmt --all -- --check

build:
needs: rust-checks
Expand Down
Loading
Loading