.travis.yml 381 B

123456789101112131415161718192021222324252627
  1. language: go
  2. sudo: false
  3. os:
  4. - linux
  5. - osx
  6. go:
  7. - 1.9.x
  8. - 1.10.x
  9. - master
  10. install:
  11. - go get -t ./...
  12. script:
  13. - diff <(gofmt -d .) <(printf "")
  14. - go test -v -cpu=2 ./...
  15. - go test -cpu=2 -tags=noasm ./...
  16. - go test -cpu=1,2,4 -short -race ./...
  17. - go test -cpu=2,4 -short -race -tags=noasm ./...
  18. matrix:
  19. allow_failures:
  20. - go: 'master'
  21. fast_finish: true