mirror of
https://github.com/pezkuwichain/merkle-mountain-range.git
synced 2026-04-22 02:08:02 +00:00
19 lines
282 B
Makefile
19 lines
282 B
Makefile
default: ci
|
|
|
|
ci: fmt check-no-std clippy test bench-test
|
|
|
|
test:
|
|
cargo test --all --all-features
|
|
|
|
bench-test:
|
|
cargo bench -- --test
|
|
|
|
clippy:
|
|
cargo clippy --all --all-features --all-targets
|
|
|
|
fmt:
|
|
cargo fmt --all -- --check
|
|
|
|
check-no-std:
|
|
cargo check --all --no-default-features
|