Added go vet step to circle.yml

This commit is contained in:
Torkel Ödegaard 2015-03-07 19:51:19 +01:00
parent ebad9cb502
commit 1b1bbcecec

View File

@ -16,7 +16,9 @@ test:
override: override:
# FMT # FMT
- test -z "$(gofmt -s -l . | grep -v Godeps/_workspace/src/ | tee /dev/stderr)" - 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/... - godep go test -v ./pkg/...
# js tests # js tests
- ./node_modules/grunt-cli/bin/grunt test - ./node_modules/grunt-cli/bin/grunt test