diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-03-24 17:52:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-24 17:52:42 +0800 |
commit | 37e252587a3429ab71cbb3ace7dca09733fa6c7c (patch) | |
tree | b73049695e8064ae54b048358f949966e0e5361f /.travis.yml | |
parent | bb7dca275c44fe9d176e629b3440adf92d26a150 (diff) | |
parent | 69ac6cc70e4f2e712be91be2795ef79bce3f0e89 (diff) | |
download | go-tangerine-37e252587a3429ab71cbb3ace7dca09733fa6c7c.tar go-tangerine-37e252587a3429ab71cbb3ace7dca09733fa6c7c.tar.gz go-tangerine-37e252587a3429ab71cbb3ace7dca09733fa6c7c.tar.bz2 go-tangerine-37e252587a3429ab71cbb3ace7dca09733fa6c7c.tar.lz go-tangerine-37e252587a3429ab71cbb3ace7dca09733fa6c7c.tar.xz go-tangerine-37e252587a3429ab71cbb3ace7dca09733fa6c7c.tar.zst go-tangerine-37e252587a3429ab71cbb3ace7dca09733fa6c7c.zip |
Merge pull request #3813 from fjl/build-fixes-2
build: unify vendor skipping, always run go vet
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 4bef48a0d..d3b0d427c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,8 +12,10 @@ matrix: - sudo modprobe fuse - 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 - # These are the latest Go versions, only run go vet and misspell on these + # These are the latest Go versions. - os: linux dist: trusty sudo: required @@ -24,7 +26,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 +36,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 |