From 8fee7c092072bf96cc63e29dff195c0d721d4162 Mon Sep 17 00:00:00 2001 From: Patrick Mezard Date: Sun, 19 Apr 2015 18:35:27 +0200 Subject: [PATCH] Add travis configuration file --- .travis.yml | 5 +++++ README.md | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4e76534 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: go +go: + - 1.4 + - tip + diff --git a/README.md b/README.md index 937005e..65887a6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ go-difflib ========== +[![Build Status](https://travis-ci.org/pmezard/go-difflib.png?branch=master)](https://travis-ci.org/pmezard/go-difflib) + Go-difflib is a partial port of python 3 difflib package. Its main goal was to make unified and context diff available in pure Go, mostly for testing purposes.