Add a simple Travis config

pull/111/head
Vytautas Šaltenis 2014-08-29 15:39:26 +03:00
parent 74dee4bbbc
commit ff693ab487
1 changed files with 17 additions and 0 deletions

17
.travis.yml Normal file
View File

@ -0,0 +1,17 @@
# 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
- tip
install:
- go get -d -v ./...
- go build -v ./...
script:
- go test -v ./...