.travis.yml 211 B

123456789101112131415
  1. language: go
  2. go:
  3. - 1.3
  4. - 1.5
  5. - tip
  6. before_install:
  7. - go get -t -v ./...
  8. script:
  9. - go test -v -coverprofile=coverage.txt -covermode=atomic
  10. after_success:
  11. - bash <(curl -s https://codecov.io/bash)