# Travis CI (http://travis-ci.org/) is a continuous integration service for # open source projects. This file configures it to run unit tests for # markdown. language: go go: - 1.5 - 1.9 install: - go get -d -t -v ./... - go build -v ./... script: - go test -v ./... - go test -run=^$ -bench=BenchmarkReference -benchmem