a41f938cec
As we have seen, dependencies version can prevent the build. We should user lock versions on dependencies that we know work: * Packages are vendored * Add Godep support * Added addtional install step in readme * Fix travis build error
16 lignes
382 o
YAML
16 lignes
382 o
YAML
sudo: false
|
|
language: go
|
|
go:
|
|
- 1.6
|
|
script:
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get github.com/mattn/goveralls
|
|
- go get github.com/kisielk/errcheck
|
|
- go test -v -race
|
|
- go vet
|
|
- errcheck ./...
|
|
- go test -coverprofile=profile.out -covermode=count
|
|
- goveralls -service=travis-ci -coverprofile=profile.out -repotoken $COVERALLS
|
|
notifications:
|
|
email:
|
|
- marty.schoch@gmail.com
|