diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-02-22 21:40:28 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-02-22 21:40:28 +0800 |
commit | c6e716eb31309b5ce85da67e25c9f96e981f3a52 (patch) | |
tree | 528917da028ed60c2b68e3f47fbd1382246f0199 /.travis.yml | |
parent | 388803b139f655ae990d47655b51898fba28b288 (diff) | |
download | go-tangerine-c6e716eb31309b5ce85da67e25c9f96e981f3a52.tar.gz go-tangerine-c6e716eb31309b5ce85da67e25c9f96e981f3a52.tar.zst go-tangerine-c6e716eb31309b5ce85da67e25c9f96e981f3a52.zip |
travis: only run go vet and misspell on latest Go
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index af7f45a2f..8ea8704ff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,11 +14,20 @@ matrix: - os: linux dist: trusty go: 1.7.5 + + # These are the latest Go versions, only run go vet and misspell on these - os: linux dist: trusty go: 1.8 + script: + - go run build/ci.go install + - go run build/ci.go test -coverage -vet -misspell + - os: osx go: 1.8 + script: + - go run build/ci.go install + - go run build/ci.go test -coverage -vet -misspell # This builder does the Ubuntu PPA and Linux Azure uploads - os: linux @@ -138,7 +147,7 @@ install: - go get golang.org/x/tools/cmd/cover script: - go run build/ci.go install - - go run build/ci.go test -coverage -vet -misspell + - go run build/ci.go test -coverage notifications: webhooks: |