Skip to content

Commit

Permalink
Update TravisCI configs. (#409)
Browse files Browse the repository at this point in the history
The vet tool moved to the Go tree as of go1.5 so it does not
need to be installed seperately.  With the x/tools repo now gone,
remove the install step for vet since it fails.
  • Loading branch information
jcvernaleo committed Apr 7, 2016
1 parent f1d9bd6 commit d45ff26
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: go
go:
- 1.5.3
- 1.6
sudo: false
before_install:
- gotools=golang.org/x/tools
install:
- go get -d -t -v ./...
- go get -v $gotools/cmd/cover
- go get -v github.com/bradfitz/goimports
- go get -v github.com/golang/lint/golint
script:
- export PATH=$PATH:$HOME/gopath/bin
- ./goclean.sh

0 comments on commit d45ff26

Please sign in to comment.