Codebase list golang-github-vbauerster-mpb / a8965f9 .travis.yml
a8965f9

Tree @a8965f9 (Download .tar.gz)

.travis.yml @a8965f9raw · history · blame

language: go
sudo: false
go:
  - 1.7.x
  - 1.8.x

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

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

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