diff options
author | Felix Lange <fjl@twurst.com> | 2017-03-23 22:48:30 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2017-03-24 17:28:46 +0800 |
commit | df1fbe3c067bbca9be10f6fc2d09a66f82313a82 (patch) | |
tree | d4ad087122f49310c0c9ddeb5b0cf6a9d50c020e /.travis.yml | |
parent | e7911ad9ea38eaf8707b7247a5ac96bc81de856c (diff) | |
download | go-tangerine-df1fbe3c067bbca9be10f6fc2d09a66f82313a82.tar.gz go-tangerine-df1fbe3c067bbca9be10f6fc2d09a66f82313a82.tar.zst go-tangerine-df1fbe3c067bbca9be10f6fc2d09a66f82313a82.zip |
build: always run go vet
This ensures 'make test' finds all errors that remote CI would find.
Go 1.7 vet reports a false positive in package log, add a workaround.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 4bef48a0d..9d85635b1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ matrix: - sudo chmod 666 /dev/fuse - sudo chown root:$USER /etc/fuse.conf - go run build/ci.go install - - go run build/ci.go test -coverage -vet -misspell + - go run build/ci.go test -coverage -misspell - os: osx go: 1.8 @@ -34,7 +34,7 @@ matrix: - brew install caskroom/cask/brew-cask - brew cask install osxfuse - go run build/ci.go install - - go run build/ci.go test -coverage -vet -misspell + - go run build/ci.go test -coverage -misspell # This builder does the Ubuntu PPA and Linux Azure uploads - os: linux |