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

Tree @ed6a1d4 (Download .tar.gz)

.travis.yml @ed6a1d4raw · history · blame

language: go

go:
  - 1.12.x
  - 1.13.x

env:
  - GO111MODULE=on

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