1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
.PHONY: build test lint integration-test clean build: cargo build --release test: cargo test lint: cargo clippy -- -D warnings cargo fmt --check integration-test: cargo test -- --ignored --nocapture clean: cargo clean