dns/.travis.yml

19 lines
382 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:
- 1.10.x
2018-08-30 16:41:33 +10:00
- 1.11.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:
- go test -race -v -bench=. -coverprofile=coverage.txt -covermode=atomic ./...
2017-11-07 20:17:19 +11:00
after_success:
- bash <(curl -s https://codecov.io/bash)