Codebase list golang-github-gofrs-uuid / 359221e5-8e46-4808-adae-cf778e09658b/main .travis.yml
359221e5-8e46-4808-adae-cf778e09658b/main

Tree @359221e5-8e46-4808-adae-cf778e09658b/main (Download .tar.gz)

.travis.yml @359221e5-8e46-4808-adae-cf778e09658b/mainraw · history · blame

language: go
sudo: false
go:
  - 1.7.x
  - 1.8.x
  - 1.9.x
  - 1.10.x
  - 1.11.x
  - tip
matrix:
  allow_failures:
    - go: tip
  fast_finish: true
env:
  - GO111MODULE=on
before_install:
  - go get golang.org/x/tools/cmd/cover
script:
  - go test ./... -race -coverprofile=coverage.txt -covermode=atomic
after_success:
  - bash <(curl -s https://codecov.io/bash)
notifications:
  email: false