From d3f1669234534e4f01afd3301aa911ebc4644ec8 Mon Sep 17 00:00:00 2001 From: Florian Dehau Date: Fri, 13 Mar 2020 02:22:15 +0100 Subject: [PATCH] chore(Makefile): add lint to stable and beta rules --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c58841f..2a1e79e 100644 --- a/Makefile +++ b/Makefile @@ -102,11 +102,11 @@ watch-doc: ## Watch file changes and rebuild the documentation if any .PHONY: stable stable: RUST_CHANNEL = stable -stable: build test ## Run build and tests for stable +stable: build lint test ## Run build and tests for stable .PHONY: beta beta: RUST_CHANNEL = beta -beta: build test ## Run build and tests for beta +beta: build lint test ## Run build and tests for beta .PHONY: nightly nightly: RUST_CHANNEL = nightly