From 5a7abe365cc3a72ec0ee07ad2a0ad3db681463a6 Mon Sep 17 00:00:00 2001 From: bergquist Date: Mon, 6 Feb 2017 15:55:22 +0100 Subject: [PATCH] tech(build): echo before running go fmt/vet --- scripts/circle-test.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/circle-test.sh b/scripts/circle-test.sh index 6dce8d540a6..726ba528363 100755 --- a/scripts/circle-test.sh +++ b/scripts/circle-test.sh @@ -18,9 +18,13 @@ yarn install --pure-lockfile exit_if_fail npm test +echo "running go fmt" exit_if_fail test -z "$(gofmt -s -l ./pkg | tee /dev/stderr)" -exit_if_fail go run build.go build + +echo "running go vet" exit_if_fail test -z "$(go vet ./pkg/... | tee /dev/stderr)" + +exit_if_fail go run build.go build exit_if_fail go test -v ./pkg/...