From c6e6b953865d701158b46bee43656a61528ed398 Mon Sep 17 00:00:00 2001 From: joe Date: Fri, 31 Oct 2014 08:07:40 -0400 Subject: [PATCH] add travis config --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e3f1130 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: go +go: 1.3.3 +before_install: + - go get github.com/tools/godep + - go get code.google.com/p/go.tools/cmd/cover + - go install -race std +script: + - godep go test -cover ./... +# - godep go test -race ./...