mirror of
https://github.com/danog/blackfriday.git
synced 2024-11-30 04:29:13 +01:00
0a029cbe51
* Run the reference benchmark on Travis So that we could have a historic record of performance.
20 lines
372 B
YAML
20 lines
372 B
YAML
# 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:
|
|
- 1.2
|
|
- 1.3
|
|
- 1.4
|
|
- 1.5
|
|
|
|
install:
|
|
- go get -d -t -v ./...
|
|
- go build -v ./...
|
|
|
|
script:
|
|
- go test -v ./...
|
|
- go test -run=^$ -bench=BenchmarkReference -benchmem
|