.travis.yml 236 B

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