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 - go get github.com/golang/lint/golint
before_script: before_script:
script: script:
- GO15VENDOREXPERIMENT=1 go build ... - GO15VENDOREXPERIMENT=1 go get -t ./...
- GO15VENDOREXPERIMENT=1 go test ... - GO15VENDOREXPERIMENT=1 go build ./...
- go vet ... - GO15VENDOREXPERIMENT=1 go test ./...
- golint ... - go vet ./...
- golint ./...