1
0

.travis.yml 253 B

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