dispatch/vendor/github.com/miekg/dns/.travis.yml

19 lines
382 B
YAML
Raw Normal View History

2018-08-31 01:07:13 +00:00
language: go
sudo: false
2018-11-10 07:04:36 +00:00
2018-08-31 01:07:13 +00:00
go:
2018-10-06 06:09:29 +00:00
- 1.10.x
- 1.11.x
2018-08-31 01:07:13 +00:00
- tip
before_install:
# don't use the miekg/dns when testing forks
- mkdir -p $GOPATH/src/github.com/miekg
- ln -s $TRAVIS_BUILD_DIR $GOPATH/src/github.com/miekg/ || true
script:
2018-11-10 07:04:36 +00:00
- go test -race -v -bench=. -coverprofile=coverage.txt -covermode=atomic ./...
2018-08-31 01:07:13 +00:00
after_success:
- bash <(curl -s https://codecov.io/bash)