all repos — grayfriday @ ef9974b1b754f4df5f3d124cb09c22ec99ef8b6e

blackfriday fork with a few changes

.travis.yml (view raw)

 1# Travis CI (http://travis-ci.org/) is a continuous integration service for
 2# open source projects. This file configures it to run unit tests for
 3# blackfriday.
 4
 5language: go
 6
 7go:
 8    - 1.2
 9    - 1.3
10
11install:
12    - go get -d -t -v ./...
13    - go build -v ./...
14
15script:
16    - go test -v ./...