.travis.yml 332 B

12345678910
  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=testcgo ./spew -covermode=count -coverprofile=profile.cov
  7. after_success:
  8. - go get -v github.com/mattn/goveralls
  9. - export PATH=$PATH:$HOME/gopath/bin
  10. - goveralls -coverprofile=profile.cov -service=travis-ci