Skip to content

Commit

Permalink
travis: only run go vet and misspell on latest Go
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe committed Feb 22, 2017
1 parent 388803b commit c6e716e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit c6e716e

Please sign in to comment.