From 41689bd74262f6ec9f243d1483923c4c60b9529c Mon Sep 17 00:00:00 2001 From: epi Date: Mon, 14 Jun 2021 20:07:03 -0500 Subject: [PATCH] added verify command --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 262d9cf..daf9ae5 100644 --- a/Makefile +++ b/Makefile @@ -27,12 +27,17 @@ endif TARGET = target/$(RELEASE) -.PHONY: all clean install uninstall +.PHONY: all clean install uninstall test update all: cli cli: $(TARGET)/$(BIN) $(TARGET)/$(BIN).1.gz $(SHR_SOURCES) install: all install-cli +verify: + cargo fmt + cargo clippy --all-targets --all-features -- -D warnings -A clippy::mutex-atomic + cargo test + clean: cargo clean