From b9fd2be304b745b31bccc512500653c205564adc Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Sun, 19 Feb 2023 19:52:11 +0530 Subject: [PATCH] feat: make: add check subroutine --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index fc5a18f..29906ac 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,10 @@ default: ## Debug build clean: ## Clean all build artifacts and dependencies @cargo clean +check: ## Check for syntax errors on all workspaces + cargo check --workspace --tests --all-features + #cd utils/cache-bust && cargo check --tests --all-features + coverage: ## Generate HTML code coverage ./scripts/coverage.sh --coverage