From fa881b2347d337cf6c3cff04eecfea52ef8c8f09 Mon Sep 17 00:00:00 2001 From: Alexander Morozov Date: Wed, 12 Aug 2015 22:49:38 -0700 Subject: [PATCH] Add vet check to travis Signed-off-by: Alexander Morozov --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 21d6684..ee1645d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,10 @@ go: # let us have pretty, fast Docker-based Travis workers! sudo: false -install: go get -d ./... +install: + - go get -d ./... + - go get golang.org/x/tools/cmd/vet script: - go test -v ./... + - go vet ./...