Skip to content

Commit

Permalink
Configure Travis and Coveralls.
Browse files Browse the repository at this point in the history
  • Loading branch information
laudney committed Nov 21, 2014
1 parent 1afae2b commit 5195430
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 4 deletions.
19 changes: 17 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 5195430

Please sign in to comment.