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

18 lines
303 B
YAML
Raw Normal View History

2019-01-12 04:58:27 +00:00
language: go
sudo: false
2019-09-27 21:51:53 +00:00
2019-01-12 04:58:27 +00:00
go:
- 1.14.x
- 1.15.x
2019-09-27 21:51:53 +00:00
- tip
env:
- GO111MODULE=on
2019-09-27 21:51:53 +00:00
2019-01-12 04:58:27 +00:00
script:
- go generate ./... && test `git ls-files --modified | wc -l` = 0
2019-09-27 21:51:53 +00:00
- go test -race -v -bench=. -coverprofile=coverage.txt -covermode=atomic ./...
after_success:
- bash <(curl -s https://codecov.io/bash)