.travis.yml 244 B

1234567891011121314151617181920212223
  1. dist: bionic
  2. language: go
  3. go:
  4. - 1.x
  5. env:
  6. - GO111MODULE=on
  7. script:
  8. - make build
  9. after_success:
  10. - bash <(curl -s https://codecov.io/bash)
  11. git:
  12. depth: 1
  13. cache:
  14. directories:
  15. - $HOME/.cache/go-build
  16. - $HOME/gopath/pkg/mod