go-libp2p-pubsub/.travis.yml

26 lines
371 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 -timeout 15m -v -race -coverprofile=coverage.txt -covermode=atomic ./...
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
email: false