25 lines
437 B
YAML
25 lines
437 B
YAML
sudo: false
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: always
|
|
|
|
env:
|
|
- GO111MODULE=on
|
|
|
|
language: go
|
|
go:
|
|
- tip
|
|
- "1.14"
|
|
- "1.13"
|
|
- "1.12"
|
|
# Latest golang.org/x/sys/unix requires go 1.12
|
|
# Prior to go 1.11 will not work because we need go modules
|
|
# Prior to go 1.9 will not work due to github.com/miekg/dns dependency
|
|
|
|
script:
|
|
- ./.travis.sh
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|