Merge pull request #12 from brendanashworth/travis-ci

Adds Travis-CI testing.
This commit is contained in:
Andrey Petrov 2014-12-13 10:59:51 -08:00
commit eefd7bdb8d
2 changed files with 18 additions and 0 deletions

15
.travis.yml Normal file
View File

@ -0,0 +1,15 @@
language: go
notifications:
email: false
install:
- make deps
default:
- make test
go:
- 1.3
- 1.4
- tip

View File

@ -10,6 +10,9 @@ all: $(BINARY)
$(BINARY): **/*.go *.go
go build .
deps:
go get .
build: $(BINARY)
clean: