Add go check to prefetched test dependencies

This commit is contained in:
Taylor Gerring 2015-02-05 18:11:31 -06:00
parent 5e0b2b260c
commit e4bb419707
1 changed files with 1 additions and 0 deletions

View File

@ -11,6 +11,7 @@ install:
# - go get golang.org/x/tools/cmd/vet
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
- go get github.com/mattn/goveralls
- go get gopkg.in/check.v1
- DEPS=$(go list -f '{{.Imports}}' ./... | sed -e 's/\[//g' | sed -e 's/\]//g' | sed -e 's/C //g'); if [ "$DEPS" ]; then go get -d -v $DEPS; fi
before_script:
- gofmt -l -w .