Browse Source

tech(build): require go vet to pass

bergquist 9 years ago
parent
commit
a36b1d9dce
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/circle-test.sh

+ 1 - 1
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/...