summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 0bf43fc6ea5b776e6897a2ef02a89b7d85ff4ea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: go
go:
    - 1.5.4
    - 1.6.3
    - 1.7
install:
    - go get -v golang.org/x/tools/cmd/cover
script:
    - go test -v -tags=disableunsafe ./spew
    - 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