2014-08-29 12:39:26 +00: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:
|
|
|
|
- 1.2
|
|
|
|
- 1.3
|
2015-04-11 15:07:21 +00:00
|
|
|
- 1.4
|
2014-08-29 12:39:26 +00:00
|
|
|
|
|
|
|
install:
|
2014-08-29 21:10:33 +00:00
|
|
|
- go get -d -t -v ./...
|
2014-08-29 12:39:26 +00:00
|
|
|
- go build -v ./...
|
|
|
|
|
|
|
|
script:
|
|
|
|
- go test -v ./...
|