.travis.yml 354 B

12345678910111213141516
  1. language: go
  2. go:
  3. - 1.4
  4. script:
  5. - go get golang.org/x/tools/cmd/vet
  6. - go get golang.org/x/tools/cmd/cover
  7. - go get github.com/mattn/goveralls
  8. - go test -v -covermode=count -coverprofile=profile.out
  9. - go vet
  10. - goveralls -service drone.io -coverprofile=profile.out -repotoken $COVERALLS
  11. notifications:
  12. email:
  13. - marty.schoch@gmail.com