.travis.yml 230 B

1234567891011121314151617181920
  1. sudo: false
  2. language: go
  3. go:
  4. - 1.10.x
  5. - 1.11.x
  6. - master
  7. go_import_path: golang.org/x/lint
  8. install:
  9. - go get -t -v ./...
  10. script:
  11. - go test -v -race ./...
  12. matrix:
  13. allow_failures:
  14. - go: master
  15. fast_finish: true