另客网go项目公用的代码库

.travis.yml 357B

123456789101112131415161718192021222324252627
  1. language: go
  2. sudo: false
  3. go:
  4. - 1.8.x
  5. - 1.9.x
  6. - 1.10.x
  7. - 1.11.x
  8. - 1.12.x
  9. - master
  10. git:
  11. depth: 10
  12. matrix:
  13. fast_finish: true
  14. include:
  15. - go: 1.11.x
  16. env: GO111MODULE=on
  17. - go: 1.12.x
  18. env: GO111MODULE=on
  19. script:
  20. - go test -v -covermode=count -coverprofile=coverage.out
  21. after_success:
  22. - bash <(curl -s https://codecov.io/bash)