git » dnss » commit da38ce8

Add configuration file for https://travis-ci.org/

author Alberto Bertogli
2015-10-18 10:40:51 UTC
committer Alberto Bertogli
2015-10-18 10:40:51 UTC
parent d46af6636409316feb2ca37cbc541f88e534c5c6

Add configuration file for https://travis-ci.org/

This commit adds a .travis.yml which configures https://travis-ci.org/, a
continuous integration service.

It tests against go versions 1.4, 1.5 and tip.

.travis.yml +14 -0

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..eeab011
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,14 @@
+# Configuration for https://travis-ci.org/
+
+language: go
+go_import_path: blitiri.com.ar/go/dnss
+
+go:
+    - 1.4
+    - 1.5
+    - tip
+
+script:
+    - go test
+    - go test -bench .
+