author | Alberto Bertogli
<albertito@blitiri.com.ar> 2016-11-03 22:57:08 UTC |
committer | Alberto Bertogli
<albertito@blitiri.com.ar> 2016-11-04 00:20:26 UTC |
parent | df673c63fba6a986ce3665ca18432e1696a61a6f |
.travis.yml | +22 | -0 |
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..527d65d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +# Configuration for https://travis-ci.org/ + +language: go +go_import_path: blitiri.com.ar/go/chasquid + +go: + - 1.7 + - tip + + +# This is needed because the repository has a Makefile, so travis won't invoke +# "go get" by default. +install: + - go get blitiri.com.ar/go/chasquid + - go get blitiri.com.ar/go/chasquid/cmd/chasquid-util + + +script: + - make all + - go test ./... + - go test -race ./... +