Codebase list golang-github-vbauerster-mpb / 4a3019e .travis.yml
4a3019e

Tree @4a3019e (Download .tar.gz)

.travis.yml @4a3019eraw · history · blame

1
2
3
4
5
6
7
8
language: go

go:
  - 1.14.x

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