From d2e292553d9de6dd6a22f0a91e78d4933cef2db9 Mon Sep 17 00:00:00 2001 From: Kris Kwiatkowski Date: Thu, 13 Sep 2018 15:20:31 +0100 Subject: [PATCH] adds 'go vet' to test target --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index fe00ab9..c19149f 100644 --- a/Makefile +++ b/Makefile @@ -43,6 +43,7 @@ install-%: prep_targets GOPATH=$(GOPATH_LOCAL) $(GO) install $(OPTS) $(GOPATH_DIR)/$* test-%: prep_targets + GOPATH=$(GOPATH_LOCAL) $(GO) vet $(GOPATH_DIR)/$* GOPATH=$(GOPATH_LOCAL) $(GO) test $(OPTS) $(GOPATH_DIR)/$* bench-%: prep_targets