git » systemd » commit cdc4fd0

travis: Add configuration for travis-ci.org

author Alberto Bertogli
2017-10-03 03:39:13 UTC
committer Alberto Bertogli
2017-10-03 04:13:08 UTC
parent aec3508d994dbfdb2df9c7514038929b1fd3adac

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..0463003
--- /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/systemd
+
+go:
+    - 1.7
+    - stable
+    - master
+
+script:
+    - go test ./...
+    - go test -race ./...