go-libp2p-pubsub/.travis.yml
vyzo c69e7310b8 remove tags=openssl from the build matrix
It takes forever to build the tests and reguarly fails with no output produced
2020-04-22 21:08:13 +03:00

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