diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..deafca7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +sudo: false +language: go +go: + - tip + - 1.9 + - 1.8 +script: + - go get golang.org/x/tools/cmd/vet + - go get golang.org/x/tools/cmd/cover + - go get github.com/kisom/goutils/... + - go test -cover github.com/kisom/goutils/... + - go vet github.com/kisom/goutils/... +notifications: + email: + recipients: + - coder@kyleisom.net + on_success: change + on_failure: change