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

Tree @f9063a1 (Download .tar.gz)

.travis.yml @f9063a1raw · history · blame

language: go

go:
  - 1.10.x
  - 1.11.x

env:
  - GO111MODULE=on

script:
  - go test -race -timeout 10s ./...
  - for i in _examples/*/; do go build $i/*.go || exit 1; done