aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDamien Mathieu <42@dmathieu.com>2014-02-03 13:37:17 +0100
committerDamien Mathieu <42@dmathieu.com>2014-02-03 13:37:17 +0100
commit574cbfde364ed091b0db8075be6e5f9058823bec (patch)
tree4307b00860c343efefca57a7f3a417606e550c78 /.travis.yml
parentremove tests.test (diff)
downloadsleepy-574cbfde364ed091b0db8075be6e5f9058823bec.tar.gz
sleepy-574cbfde364ed091b0db8075be6e5f9058823bec.tar.bz2
sleepy-574cbfde364ed091b0db8075be6e5f9058823bec.zip
setup travis for continuous integration
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..068fe6a
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,7 @@
+language: go
+go:
+ - 1.1.2
+ - 1.2
+install:
+ - script/build
+script: script/test
bgstack15