aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/xanzy/go-gitlab/.travis.yml
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-07-23 19:50:58 +0200
committerGitHub <noreply@github.com>2019-07-23 19:50:58 +0200
commit9ecbcb1cf6348b95b31ccef3f9722be078dbe223 (patch)
treed855b993905051d5ff5dbc3e30460bc09fa2e2c4 /vendor/github.com/xanzy/go-gitlab/.travis.yml
parentca00c9c6b84f0b1333e40666ab979d0d8fdc4036 (diff)
parent29fdd37ce69b48aa9fc3c1b829ff67818041068f (diff)
downloadgit-bug-9ecbcb1cf6348b95b31ccef3f9722be078dbe223.tar.gz
Merge pull request #179 from MichaelMure/gitlab-support
Add gitlab bridge configuration and importer
Diffstat (limited to 'vendor/github.com/xanzy/go-gitlab/.travis.yml')
-rw-r--r--vendor/github.com/xanzy/go-gitlab/.travis.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/vendor/github.com/xanzy/go-gitlab/.travis.yml b/vendor/github.com/xanzy/go-gitlab/.travis.yml
new file mode 100644
index 00000000..556aec78
--- /dev/null
+++ b/vendor/github.com/xanzy/go-gitlab/.travis.yml
@@ -0,0 +1,28 @@
+language: go
+
+go:
+ - 1.9.x
+ - 1.10.x
+ - 1.11.x
+ - 1.12.x
+ - master
+
+stages:
+ - lint
+ - test
+
+jobs:
+ include:
+ - stage: lint
+ script:
+ - go get golang.org/x/lint/golint
+ - golint -set_exit_status
+ - go vet -v
+ - stage: test
+ script:
+ - go test -v
+
+matrix:
+ allow_failures:
+ - go: master
+ fast_finish: true