dnscrypt-proxy/vendor/github.com/miekg/dns/.travis.yml

18 lines
303 B
YAML
Raw Normal View History

language: go
sudo: false
2018-11-15 13:38:08 +01:00
go:
- 1.14.x
- 1.15.x
- tip
2019-09-07 11:04:40 +02:00
env:
- GO111MODULE=on
script:
2020-01-06 01:00:16 +01:00
- go generate ./... && test `git ls-files --modified | wc -l` = 0
2018-11-15 13:38:08 +01:00
- go test -race -v -bench=. -coverprofile=coverage.txt -covermode=atomic ./...
after_success:
- bash <(curl -s https://codecov.io/bash)