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

12345678910111213141516171819202122
  1. sudo: false
  2. language: go
  3. go:
  4. - 1.9.x
  5. - 1.10.x
  6. - 1.11.x
  7. - tip
  8. matrix:
  9. allow_failures:
  10. - go: tip
  11. install:
  12. - go get golang.org/x/lint/golint
  13. - export PATH=$GOPATH/bin:$PATH
  14. - go install ./...
  15. script:
  16. - verify/all.sh -v
  17. - go test ./...