From d0083cb8d9fba3578c4ad0eb84f959f10a50a7d0 Mon Sep 17 00:00:00 2001 From: Chris Prather Date: Thu, 15 Oct 2020 11:00:43 -0400 Subject: [PATCH] reorder the tests to check build first then vet and staticcheck --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e707320..8e924d1 100644 --- a/Makefile +++ b/Makefile @@ -22,9 +22,9 @@ deps: ## Update dependencies to latest version .PHONY: test test: ## Ensure that code matches best practices + go test ./... staticcheck ./... go vet - TZ=UTC go test .PHONY: help help: ## Display this help message