From 1b1bbcecec5849cdca1320b8b6f94a40ff863f48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Sat, 7 Mar 2015 19:51:19 +0100 Subject: [PATCH] Added go vet step to circle.yml --- circle.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index f1b151a8e41..c2ea5920bb6 100644 --- a/circle.yml +++ b/circle.yml @@ -16,7 +16,9 @@ test: override: # FMT - test -z "$(gofmt -s -l . | grep -v Godeps/_workspace/src/ | tee /dev/stderr)" - # Go lang test + # GO VET + - go vet ./pkg/... + # Go test - godep go test -v ./pkg/... # js tests - ./node_modules/grunt-cli/bin/grunt test