go-libp2p-pubsub/.travis.yml
vyzo 57fbd38498 add travis_wait to test job
in an attempt to counter the frequent "no output received" problem
2020-04-22 21:08:13 +03:00

26 lines
358 B
YAML

os:
- linux
language: go
go:
- 1.14.x
env:
matrix:
- GOTFLAGS="-race"
cache:
directories:
- $GOPATH/pkg/mod
- $HOME/.cache/go-build
script:
- go build ./...
- travis_wait go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
email: false