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 224B

12345678910111213141516
  1. language: go
  2. sudo: false
  3. go:
  4. - 1.13.x
  5. - tip
  6. before_install:
  7. - go get -t -v ./...
  8. script:
  9. - go generate
  10. - git diff --cached --exit-code
  11. - ./go.test.sh
  12. after_success:
  13. - bash <(curl -s https://codecov.io/bash)