summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nlopes/slack/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/nlopes/slack/.travis.yml')
-rw-r--r--vendor/github.com/nlopes/slack/.travis.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/github.com/nlopes/slack/.travis.yml b/vendor/github.com/nlopes/slack/.travis.yml
new file mode 100644
index 00000000..bd0539e0
--- /dev/null
+++ b/vendor/github.com/nlopes/slack/.travis.yml
@@ -0,0 +1,21 @@
+language: go
+
+go:
+ - 1.7.x
+ - 1.8.x
+ - 1.9.x
+ - tip
+
+before_install:
+ - export PATH=$HOME/gopath/bin:$PATH
+
+script:
+ - go test -race ./...
+ - go test -cover ./...
+
+matrix:
+ allow_failures:
+ - go: tip
+
+git:
+ depth: 10