don't run fmt or clippy in check/test target

add a san (-ity) target instead

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2020-01-22 10:01:56 +01:00
parent 6318298d33
commit 3510be76a3

View File

@ -34,9 +34,16 @@ cargo-build:
.PHONY: test
test:
cargo +nightly fmt -- --check
cargo test
.PHONY: check
check: test
.PHONY: san
san:
cargo +nightly fmt -- --check
cargo clippy
cargo test
$(COMPILED_BINS): cargo-build