1 2 3 4 5 6 7 8 9 10 11 12 13 14
default: ci test: RUSTFLAGS='-F warnings' RUST_BACKTRACE=full cargo test --all clippy: RUSTFLAGS='-F warnings' cargo clippy --all --tests fmt: cargo fmt --all -- --check ci: fmt clippy test .PHONY: test clippy fmt ci