git » debian:golang-blitiri-go-log » commit 6cd06f6

travis: Add configuration for travis-ci.org

author Alberto Bertogli
2017-10-03 03:36:49 UTC
committer Alberto Bertogli
2017-10-03 03:53:48 UTC
parent 2b2e1b6c354fdf14182bd859b88420989fbed2c9

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..30fdda1
--- /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/log
+
+go:
+    - 1.7
+    - stable
+    - master
+
+script:
+    - go test ./...
+    - go test -race ./...