diff --git a/.travis.yml b/.travis.yml index ae71c02f5..465e3c52c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,18 @@ language: go -go: release -install: go get -d -t -v ./... +go: +- release +install: +- go get -d -t -v ./... +- go get -v code.google.com/p/go.tools/cmd/vet +- go get -v code.google.com/p/go.tools/cmd/cover +- go get -v github.com/davecgh/go-spew/spew +- go get -v github.com/GeertJohan/fgt +- go get -v github.com/golang/lint/golint +script: +- export PATH=$PATH:$HOME/gopath/bin +- go vet +- fgt golint . +- go test -v -covermode=count -coverprofile=profile.cov +after_success: +- go get -v github.com/mattn/goveralls +- goveralls -coverprofile=profile.cov -service=travis-ci diff --git a/README.md b/README.md index 51f52cd7a..81344f00e 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ rddutil ======= -[![Build Status](https://travis-ci.org/conformal/btcutil.png?branch=master)] -(https://travis-ci.org/conformal/btcutil) +[![Build Status](https://travis-ci.org/reddcoin-project/rddutil.png?branch=master)] +(https://travis-ci.org/reddcoin-project/rddutil) [![Coverage Status] +(https://coveralls.io/repos/reddcoin-project/rddutil/badge.png?branch=master)] +(https://coveralls.io/r/reddcoin-project/rddutil?branch=master) Package rddutil provides Reddcoin-specific convenience functions and types. A comprehensive suite of tests is provided to ensure proper functionality. See