Codebase list golang-github-vbauerster-mpb / 2fea2fa .travis.yml
2fea2fa

Tree @2fea2fa (Download .tar.gz)

.travis.yml @2fea2faraw · history · blame

language: go
sudo: false
go:
  - 1.10.x
  - tip

before_install:
  - go get -t -v ./...

script:
  - go test -race -coverprofile=coverage.txt -covermode=atomic

after_success:
  - bash <(curl -s https://codecov.io/bash)