From 3cbba55822e556488b868c34fffe764bd889b3b1 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 12 Jun 2014 18:37:35 -0500 Subject: [PATCH] Add support for TravisCI. Also add TravisCI build status badge to README.md. --- .travis.yml | 6 ++++++ README.md | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..2cd23c40 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,6 @@ +language: go +go: + - release + - tip +install: + - go get -d -t -v ./... diff --git a/README.md b/README.md index 7cdd4a84..b28c5ee7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ btcnet ====== +[![Build Status](https://travis-ci.org/conformal/btcnet.png?branch=master)] +(https://travis-ci.org/conformal/btcnet) + Package btcnet defines the network parameters for the three standard Bitcoin networks and provides the ability for callers to define their own custom Bitcoin networks.