Bring .travis.yml in line with others.

Add tip too.
This commit is contained in:
John C. Vernaleo 2014-09-16 07:58:50 -04:00
parent 4bc2c7f04f
commit 036daa5817

View file

@ -1,12 +1,16 @@
language: go language: go
go: release go:
- 1.2
- release
- tip
install: install:
- go get code.google.com/p/go.tools/cmd/vet - go get -d -t -v ./...
- go get github.com/GeertJohan/fgt - go get -v code.google.com/p/go.tools/cmd/vet
- go get github.com/golang/lint/golint - go get -v github.com/GeertJohan/fgt
- go get -d -t -v ./... - go get -v github.com/golang/lint/golint
script: script:
- export PATH=$PATH:$HOME/gopath/bin - export PATH=$PATH:$HOME/gopath/bin
- fgt golint -min_confidence=0.9 *.go - go vet
- go vet *.go - fgt golint -min_confidence=0.9 .
- go test -v ./... - go vet *.go
- go test -v