Files
2020-01-17 13:26:05 +08:00

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