1 2 3 4 5 6 7 8 9 10 11 12 13 14
BUILD_ENV := rust .PHONY: lint fix test lint: @cargo fmt @cargo clippy --all-targets --all-features fix: @cargo clippy --fix --workspace --tests @cargo fmt --all test: @cargo test --workspace --all-features -- --nocapture