diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000000..17c58d1d60d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: go + +go: + - 1.2 + - tip + +install: + - bad=$(gofmt -s -l pkg/ cmd/) bash -x -c '[[ -z "$bad" ]]' + - ./hack/build-go.sh + +script: + - ./hack/test-go.sh + - ./hack/integration-test.sh + - ./hack/e2e-test.sh