update packaging
[platform/core/system/edge-orchestration.git] / vendor / github.com / miekg / dns / .travis.yml
1 language: go
2 sudo: false
3
4 go:
5   - 1.10.x
6   - 1.11.x
7   - 1.12.x
8   - tip
9
10 before_install:
11   # don't use the miekg/dns when testing forks
12   - mkdir -p $GOPATH/src/github.com/miekg
13   - ln -s $TRAVIS_BUILD_DIR $GOPATH/src/github.com/miekg/ || true
14
15 script:
16   - go test -race -v -bench=. -coverprofile=coverage.txt -covermode=atomic ./...
17
18 after_success:
19   - bash <(curl -s https://codecov.io/bash)