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
9 lignes
153 o
YAML
9 lignes
153 o
YAML
language: go
|
|
go:
|
|
- 1.6.x
|
|
- 1.7.x
|
|
- 1.8.x
|
|
- tip
|
|
install:
|
|
- go get -t ./...
|
|
script: GOMAXPROCS=4 GORACE="halt_on_error=1" go test -race -v ./...
|