16 lines
240 B
Makefile
16 lines
240 B
Makefile
.PHONY: fmt fmt-check clippy test ci
|
|
|
|
fmt:
|
|
cargo fmt
|
|
|
|
fmt-check:
|
|
cargo fmt -- --check
|
|
|
|
clippy:
|
|
cargo clippy --workspace --all-features
|
|
|
|
test:
|
|
cargo test --workspace --all-targets --all-features --no-fail-fast
|
|
|
|
ci: fmt-check clippy test
|