Skip to content

Commit

Permalink
Avoid unification problems in clippy check
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeyBF committed Aug 20, 2024
1 parent 0dfa361 commit a64dd65
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ext/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ test:

lint:
cargo fmt --all -- --check
cargo clippy --workspace --no-default-features --profile test
for crate in crates/*; do \
cargo clippy -p $$(basename $$crate) --no-default-features --profile test; \
done
cargo clippy --no-default-features --profile test
cargo clippy --workspace --all-targets --profile test
cargo check --workspace --no-default-features --profile test
cargo check --workspace --all-targets --all-features --profile test
Expand Down

0 comments on commit a64dd65

Please sign in to comment.