.travis.yml 322 B

12345678910111213141516171819
  1. sudo: false
  2. language: go
  3. go:
  4. - 1.6.x
  5. - 1.7.x
  6. - 1.8.x
  7. install:
  8. - go get github.com/prometheus/client_golang/prometheus
  9. - go get google.golang.org/grpc
  10. - go get golang.org/x/net/context
  11. - go get github.com/stretchr/testify
  12. script:
  13. - ./test_all.sh
  14. after_success:
  15. - bash <(curl -s https://codecov.io/bash)