mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-25 13:57:59 +00:00
16 lines
280 B
Makefile
16 lines
280 B
Makefile
.PHONY: format clippy test machete
|
|
|
|
format:
|
|
cargo +nightly 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
|
|
|