all repos — grayfriday @ ff693ab4878b576e8fad0514deed421dff9c5633

blackfriday fork with a few changes

Add a simple Travis config
Vytautas Ĺ altenis vytas@rtfb.lt
Fri, 29 Aug 2014 15:39:26 +0300
commit

ff693ab4878b576e8fad0514deed421dff9c5633

parent

74dee4bbbcbfa0b8b6edb04be28176d67859d05f

1 files changed, 17 insertions(+), 0 deletions(-)

jump to
A .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 ./...