Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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