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