From 2dab5f16697bf8881854a550107fe02fa79cc772 Mon Sep 17 00:00:00 2001 From: realaravinth Date: Wed, 7 Sep 2022 10:27:44 +0530 Subject: [PATCH] feat: add check cmd --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 6be3de1..a44b103 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,10 @@ default: ## Debug build cargo build +check: ## Check for syntax errors on all workspaces + cargo check --workspace --tests --all-features + #cd utils/cache-bust && cargo check --tests --all-features + clean: ## Clean all build artifacts and dependencies @cargo clean