.travis.yml 376 B

123456789101112
  1. language: go
  2. go: 1.2
  3. install:
  4. - go get -v code.google.com/p/go.tools/cmd/cover
  5. script:
  6. - go test -v -tags=disableunsafe ./spew
  7. - go test -v -tags=testcgo ./spew -covermode=count -coverprofile=profile.cov
  8. after_success:
  9. - go get -v github.com/mattn/goveralls
  10. - export PATH=$PATH:$HOME/gopath/bin
  11. - goveralls -coverprofile=profile.cov -service=travis-ci