git » spf » commit f32c22b

travis: Add configuration for travis-ci.org

author Alberto Bertogli
2017-10-03 03:40:25 UTC
committer Alberto Bertogli
2017-10-03 04:13:59 UTC
parent 33aa9857eff1c5f0694c52ce6011daf5c3e3c67e

travis: Add configuration for travis-ci.org

This patch adds a configuration file for continuous integration at
https://travis-ci.org/.

.travis.yml +16 -0

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..0c253ee
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,16 @@
+# Configuration for https://travis-ci.org/
+
+language: go
+dist: trusty
+sudo: false
+
+go_import_path: blitiri.com.ar/go/spf
+
+go:
+    - 1.7
+    - stable
+    - master
+
+script:
+    - go test ./...
+    - go test -race ./...