19 lines
333 B
YAML
19 lines
333 B
YAML
sudo: false
|
|
language: go
|
|
go:
|
|
- 1.6.x
|
|
- 1.7.x
|
|
- 1.8.x
|
|
- master
|
|
|
|
install:
|
|
- go get github.com/prometheus/client_golang/prometheus
|
|
- go get google.golang.org/grpc
|
|
- go get golang.org/x/net/context
|
|
- go get github.com/stretchr/testify
|
|
|
|
script:
|
|
- ./test_all.sh
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|