.travis.yml 283 B

1234567891011121314151617
  1. language: go
  2. go:
  3. - 1.9.x
  4. - 1.10.x
  5. - 1.11.x
  6. before_install:
  7. - go get -t -v ./...
  8. install:
  9. - go get github.com/xtaci/kcp-go
  10. script:
  11. - go test -coverprofile=coverage.txt -covermode=atomic -bench .
  12. after_success:
  13. - bash <(curl -s https://codecov.io/bash)