Add vet, lint, and 1.2 builds to travis.

This commit is contained in:
John C. Vernaleo 2014-09-16 08:21:34 -04:00
parent c3abafc7eb
commit 351a2a5f5e

View file

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