.travis.yml 243 B

123456789101112131415161718
  1. language: go
  2. go:
  3. - 1.15.x
  4. - master
  5. arch:
  6. - amd64
  7. - ppc64le
  8. before_install:
  9. - go get -t -v ./...
  10. script:
  11. - go test -race -coverprofile=coverage.txt -covermode=atomic
  12. after_success:
  13. - bash <(curl -s https://codecov.io/bash)