Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-10-12 20:11:02 +0300
committerRémy Coutable <remy@rymai.me>2016-10-12 20:11:02 +0300
commit1cc9f286bdb27974c84d4ce2b84f6f10c393c568 (patch)
treef41b1dda907b007169dc494f6422205201d9e961 /.gitlab-ci.yml
parent3c31f185b931a4054804aee56be0602135b75bed (diff)
parent916210a0d4fb658a190a6da1dad82e8482741148 (diff)
Merge branch 'sh-add-bundle-check' into 'master'
Add a bundle check step to ensure dependencies are correct This should help prevent merge issues in the future, which caused !6814 to be needed. See merge request !6815
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8645488335e..441f77740a8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -255,6 +255,12 @@ lint-doc:
script:
- scripts/lint-doc.sh
+bundler:check:
+ stage: test
+ <<: *ruby-static-analysis
+ script:
+ - bundle check
+
bundler:audit:
stage: test
<<: *ruby-static-analysis