Glide-ify .travis.yml to test everything against the glided dependencies.

This commit is contained in:
David Anderson 2016-08-14 17:54:50 -07:00
parent 0407e90330
commit fed7f78f53

View File

@ -11,11 +11,12 @@ addons:
packages: packages:
- atftp - atftp
install: install:
- go get github.com/Masterminds/glide
- go get github.com/golang/lint/golint - go get github.com/golang/lint/golint
before_script: before_script:
script: script:
- GO15VENDOREXPERIMENT=1 go get -t ./... - glide install
- GO15VENDOREXPERIMENT=1 go build ./... - GO15VENDOREXPERIMENT=1 go build ./...
- GO15VENDOREXPERIMENT=1 go test ./... - GO15VENDOREXPERIMENT=1 go test $(glide novendor)
- go vet ./... - go vet $(glide novendor)
- golint ./... - golint $(glide novendor)