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

Tree @a59f4ec (Download .tar.gz)

.travis.yml @a59f4ecraw · history · blame

language: go

go:
  - 1.10.x
  - 1.11.x

env:
  - GO111MODULE=on

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