go-spew/.travis.yml

15 lines
398 B
YAML
Raw Normal View History

2013-11-16 21:28:15 -06:00
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
2014-03-27 05:08:45 -05:00
- goveralls -coverprofile=profile.cov -service=travis-ci