1
0
mirror of https://github.com/danog/blackfriday.git synced 2024-12-02 09:27:49 +01:00
blackfriday/.travis.yml

19 lines
362 B
YAML
Raw Normal View History

2014-08-29 14:39:26 +02:00
# 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:
2015-10-17 20:11:06 +02:00
- 1.5
- 1.6
- 1.7
2014-08-29 14:39:26 +02:00
install:
- go get -d -t -v ./...
2014-08-29 14:39:26 +02:00
- go build -v ./...
script:
- go test -v ./...
- go test -run=^$ -bench=BenchmarkReference -benchmem