From ff693ab4878b576e8fad0514deed421dff9c5633 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vytautas=20=C5=A0altenis?= Date: Fri, 29 Aug 2014 15:39:26 +0300 Subject: [PATCH] Add a simple Travis config --- .travis.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9dae969 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +# Travis CI (http://travis-ci.org/) is a continuous integration service for +# open source projects. This file configures it to run unit tests for +# blackfriday. + +language: go + +go: + - 1.2 + - 1.3 + - tip + +install: + - go get -d -v ./... + - go build -v ./... + +script: + - go test -v ./...