.travis.yml 369 B

1234567891011121314151617181920212223
  1. language: go
  2. sudo: false
  3. matrix:
  4. include:
  5. - go: "1.17.x"
  6. - go: "1.18.x"
  7. - go: "1.19.x"
  8. install:
  9. - go get -d -t ./...
  10. script:
  11. - make test vet bench
  12. notifications:
  13. webhooks:
  14. urls:
  15. - https://webhooks.gitter.im/e/ead3c37d57527214e9f2
  16. - https://webhooks.gitter.im/e/e57478303f87ecd7bffc
  17. on_success: change
  18. on_failure: always