Change 'make test-vet' to call 'go vet'

This commit is contained in:
Jan Wozniak 2020-02-13 11:21:45 +01:00
parent d717c8c48a
commit fdb32183fe
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ test-go:
test: test-vet
test-vet:
@ echo; echo "### $@:"
go test $(GOFLAGS_VENDOR) `go list $(GOFLAGS_VENDOR) ./... | grep -v vendor $(TEST_VET_FILTER_CMD)`
go vet $(GOFLAGS_VENDOR) `go list $(GOFLAGS_VENDOR) ./... | grep -v vendor $(TEST_VET_FILTER_CMD)`
.PHONY: test-fmt
test: test-fmt