.travis.yml 260 B

123456789101112131415161718
  1. language: go
  2. install:
  3. - go get -d -t -v ./... && go build -v ./...
  4. go:
  5. - 1.5
  6. - 1.6
  7. - 1.7
  8. - 1.8
  9. - tip
  10. script:
  11. - go vet ./...
  12. - go test -v -coverprofile=coverage.txt -covermode=atomic
  13. after_success:
  14. - bash <(curl -s https://codecov.io/bash)