dns/.travis.yml

21 lines
415 B
YAML
Raw Normal View History

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