diff options
| -rw-r--r-- | .travis.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index fb9efcb..2633c21 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,2 +1,11 @@ language: go go: 1.2 +install: + - go get -v code.google.com/p/go.tools/cmd/cover +script: + - go test -v ./spew -covermode=count -coverprofile=profile.cov +after_success: + - go get -v github.com/mattn/goveralls + - export PATH=$PATH:$HOME/gopath/bin + - cd ./spew + - goveralls -v -service travis-ci |
