From a36b1d9dcebd46db88bc46f83c7c71fa8b874391 Mon Sep 17 00:00:00 2001 From: bergquist Date: Sun, 5 Feb 2017 21:21:05 +0100 Subject: [PATCH] tech(build): require go vet to pass --- scripts/circle-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/circle-test.sh b/scripts/circle-test.sh index d2ff10f5f07..6dce8d540a6 100755 --- a/scripts/circle-test.sh +++ b/scripts/circle-test.sh @@ -20,7 +20,7 @@ exit_if_fail npm test exit_if_fail test -z "$(gofmt -s -l ./pkg | tee /dev/stderr)" exit_if_fail go run build.go build -exit_if_fail go vet ./pkg/... +exit_if_fail test -z "$(go vet ./pkg/... | tee /dev/stderr)" exit_if_fail go test -v ./pkg/...