vendor/github.com/russross/blackfriday/.travis.yml
changeset 246 0998f404dd31
parent 245 910f00ab2799
child 247 1ca743b3eb80
equal deleted inserted replaced
245:910f00ab2799 246:0998f404dd31
     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 
       
     5 language: go
       
     6 
       
     7 go:
       
     8     - 1.5
       
     9     - 1.6
       
    10     - 1.7
       
    11 
       
    12 install:
       
    13     - go get -d -t -v ./...
       
    14     - go build -v ./...
       
    15 
       
    16 script:
       
    17     - go test -v ./...
       
    18     - go test -run=^$ -bench=BenchmarkReference -benchmem