.travis.yml 415 B

12345678910111213141516
  1. language: go
  2. go:
  3. - tip
  4. - 1.6
  5. - 1.5
  6. - 1.4
  7. install:
  8. - go get -t -v ./...
  9. - go get github.com/go-playground/overalls
  10. - go get github.com/mattn/goveralls
  11. - go get golang.org/x/tools/cmd/cover
  12. script:
  13. - go test -v ./...
  14. - $GOPATH/bin/overalls -project=github.com/mmcdole/gofeed -covermode=count -ignore=.git,vendor -debug
  15. after_success:
  16. - $GOPATH/bin/goveralls -coverprofile=overalls.coverprofile -service=travis-ci