Files
revive-differential-tests/Makefile
2025-06-14 10:12:30 +00:00

16 lines
271 B
Makefile

.PHONY: format clippy test machete
format:
cargo fmt --all -- --check
clippy:
cargo clippy --all-features --workspace -- --deny warnings
machete:
cargo install cargo-machete
cargo machete crates
test: format clippy machete
cargo test --workspace -- --nocapture