.travis.yml 270 B

12345678910111213141516
  1. language: go
  2. go:
  3. - 1.8
  4. - tip
  5. before_install:
  6. - sudo apt-get -qq update
  7. - sudo apt-get install -y openvpn
  8. - go get -t -v ./...
  9. script:
  10. - go test -race -coverprofile=coverage.txt -covermode=atomic .
  11. after_success:
  12. - bash <(curl -s https://codecov.io/bash)