chore(Makefile): add lint to stable and beta rules

This commit is contained in:
Florian Dehau 2020-03-13 02:22:15 +01:00
parent 3f62ce9c19
commit d3f1669234

View file

@ -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