dns/.travis.yml

17 lines
363 B
YAML
Raw Normal View History

2014-07-08 14:23:29 +00:00
language: go
sudo: false
2014-07-08 14:23:29 +00:00
go:
2017-10-13 06:57:18 +00:00
- 1.9.x
- 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:
2017-11-07 09:17:19 +00:00
- go test -race -v -bench=. -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)