mirror of
https://github.com/russross/blackfriday.git
synced 2024-03-22 13:40:34 +08:00
18 lines
304 B
YAML
18 lines
304 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
|
|
|
|
install:
|
|
- go get -d -t -v ./...
|
|
- go build -v ./...
|
|
|
|
script:
|
|
- go test -v ./...
|