From 472c998c0d761fa29ef2e05ddfa2460e943033a6 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Tue, 10 Dec 2013 19:17:44 -0600 Subject: [PATCH] Add support for TravisCI. Also add TravisCI build status badge to README.md. --- .travis.yml | 3 +++ README.md | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..ae71c02f --- /dev/null +++ b/.travis.yml @@ -0,0 +1,3 @@ +language: go +go: release +install: go get -d -t -v ./... diff --git a/README.md b/README.md index 565f3f18..987e41ec 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ btcdb ===== +[![Build Status](https://travis-ci.org/conformal/btcdb.png?branch=master)] +(https://travis-ci.org/conformal/btcdb) + Package btcdb provides a database interface for the bitcoin block chain and transactions. There is a test suite with a high percentage of code coverage. See `test_coverage.txt` for the current coverage (using gocov). Alternatively,