Travis CI setup.

This commit is contained in:
Andrey Smirnov
2013-12-13 23:28:24 +04:00
parent 5181334336
commit d489365be2
2 changed files with 34 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
prepare:
go get -d -v ./...
go get launchpad.net/gocheck
go get github.com/axw/gocov/gocov
go get github.com/golang/lint/golint
go get github.com/matm/gocov-html
go get github.com/mattn/goveralls
coverage:
gocov test ./... | gocov-html > coverage.html
open coverage.html
check:
go tool vet -all=true .
golint .
test:
go test -v ./...