You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.travis.yml 377B

1234567891011121314151617181920212223
  1. language: go
  2. sudo: false
  3. go:
  4. - 1.2
  5. - 1.3
  6. - 1.4
  7. - 1.5
  8. - 1.6
  9. - 1.7
  10. - 1.8
  11. - 1.9
  12. - tip
  13. matrix:
  14. allow_failures:
  15. - go: tip
  16. fast_finish: true
  17. before_install:
  18. - go get github.com/mattn/goveralls
  19. - go get golang.org/x/tools/cmd/cover
  20. script:
  21. - $HOME/gopath/bin/goveralls -service=travis-ci
  22. notifications:
  23. email: false