.travis.yml 193 B

1234567891011121314
  1. ---
  2. language: go
  3. sudo: false
  4. go:
  5. - "1.11"
  6. env:
  7. - GO111MODULE=on
  8. install: true
  9. script:
  10. - go test -v
  11. after_success:
  12. - test -n "$TRAVIS_TAG" && curl -sL https://git.io/goreleaser | bash