Skip to content

Commit 006c2f6

Browse files
committed
Merge branch 'ci'
2 parents 0a05216 + 41d39c9 commit 006c2f6

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.travis.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Travis CI (http://travis-ci.org/) is a continuous integration
2+
# service for open source projects. This file configures it
3+
# to run unit tests for msgpack-cli.
4+
5+
language: go
6+
7+
go:
8+
- 1.5
9+
- 1.6
10+
- 1.7
11+
- tip
12+
13+
before_install:
14+
- sudo apt-get -qq update
15+
- sudo apt-get install -y python python-pip
16+
- sudo pip install msgpack-python==0.4.7 msgpack-rpc-python==0.3.3
17+
18+
script:
19+
- go test -v
20+
- ./test/run.sh

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
msgpack-cli
22
===========
33

4+
[![Build Status](https://travis-ci.org/jakm/msgpack-cli.svg?branch=master)](https://travis-ci.org/jakm/msgpack-cli)
5+
46
msgpack-cli is command line tool that converts data from JSON to [Msgpack](http://msgpack.org) and vice versa. Also allows calling RPC methods via [msgpack-rpc](https://github.com/msgpack-rpc/msgpack-rpc/blob/master/spec.md).
57

68
Installation

0 commit comments

Comments
 (0)