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

18 lines
307 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:
2020-04-29 02:23:32 +00:00
- "1.12.x"
- "1.13.x"
2018-08-31 01:07:13 +00:00
- tip
2020-04-29 02:23:32 +00:00
env:
- GO111MODULE=on
2018-08-31 01:07:13 +00:00
script:
2020-04-29 02:23:32 +00:00
- go generate ./... && test `git ls-files --modified | wc -l` = 0
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)