Fix travis build instructions.

This commit is contained in:
David Anderson 2016-03-24 12:20:25 -07:00
parent b7ae49bdb6
commit b21d961610

View File

@ -10,7 +10,8 @@ install:
- go get github.com/golang/lint/golint
before_script:
script:
- GO15VENDOREXPERIMENT=1 go build ...
- GO15VENDOREXPERIMENT=1 go test ...
- go vet ...
- golint ...
- GO15VENDOREXPERIMENT=1 go get -t ./...
- GO15VENDOREXPERIMENT=1 go build ./...
- GO15VENDOREXPERIMENT=1 go test ./...
- go vet ./...
- golint ./...