mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-22 11:27:59 +00:00
534170db6f
Signed-off-by: xermicus <cyrill@parity.io>
16 lines
271 B
Makefile
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
|
|
|