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

12345678910111213141516
  1. language: go
  2. os:
  3. - linux
  4. - osx
  5. - windows
  6. go:
  7. - 1.11.4
  8. env:
  9. global:
  10. - GO111MODULE=on
  11. install:
  12. - go mod download
  13. - go get github.com/mattn/goveralls
  14. script:
  15. - go test -v -covermode=count -coverprofile=coverage.out -bench . -cpu 1,4
  16. - '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN || true'