.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 - 1.4
11 - 1.5
12
13install:
14 - go get -d -t -v ./...
15 - go build -v ./...
16
17script:
18 - go test -v ./...
19 - go test -run=^$ -bench=BenchmarkReference -benchmem