Skip to content

Commit f7e9651

Browse files
committed
Merge pull request #11 from docopt/travis-ci
tests(ci): add travis-ci.org config file for unit tests
2 parents c48a597 + a3a39e5 commit f7e9651

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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 docopt-go.
4+
5+
language: go
6+
7+
go:
8+
- 1.1.2
9+
- 1.2.1
10+
- tip
11+
12+
install: go get -d -v ./... && go build -v .
13+
14+
script: go test -v .

README.md

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

4+
[![Build Status](https://travis-ci.org/docopt/docopt-go.svg?branch=master)](https://travis-ci.org/docopt/docopt-go)
5+
46
Golang implementation of [docopt](http://docopt.org/) 0.6.1+fix
57

68
## Installation

0 commit comments

Comments
 (0)