1fe6da2ad6
Refs https://github.com/hashicorp/go-discover/pull/128 * deps: add replace directive for gocheck Transitive dep, source at https://launchpad.net/gocheck indicates project moved. This also avoids a dependency on bzr when fetching modules. Refs https://github.com/hashicorp/consul/pull/6818 * deps: make update-vendor * test: update retry-join expected names from go-discover
29 lines
334 B
YAML
29 lines
334 B
YAML
language: go
|
|
|
|
sudo: false
|
|
|
|
go:
|
|
# - 1.3
|
|
# - 1.4
|
|
# - 1.5
|
|
# - 1.6
|
|
# - 1.7
|
|
# - 1.8.x
|
|
# - 1.9.x
|
|
- 1.10.x
|
|
- 1.11.x
|
|
- tip
|
|
|
|
install:
|
|
- go get -v -t ./...
|
|
|
|
script:
|
|
- go test ./... -coverprofile=coverage.txt -covermode=atomic
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- go: tip
|