12345678910111213141516171819 |
- sudo: false
- language: go
- go:
- - 1.6.x
- - 1.7.x
- - 1.8.x
- 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)
|