diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..a557a20 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: go + +notifications: + email: false + +install: + - make deps + +default: + - make test + +go: + - 1.3 + - 1.4 + - tip \ No newline at end of file diff --git a/Makefile b/Makefile index 54f516c..7638bec 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,9 @@ all: $(BINARY) $(BINARY): **/*.go *.go go build . +deps: + go get . + build: $(BINARY) clean: