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

Tree @e806cc4 (Download .tar.gz)

.travis.yml @e806cc4raw · history · blame

language: go

go:
  - 1.11.x
  - 1.12.x

env:
  - GO111MODULE=on

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