diff options
author | Rémy Coutable <remy@rymai.me> | 2016-10-12 17:11:02 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2016-10-12 17:11:02 +0000 |
commit | 1cc9f286bdb27974c84d4ce2b84f6f10c393c568 (patch) | |
tree | f41b1dda907b007169dc494f6422205201d9e961 /.gitlab-ci.yml | |
parent | 3c31f185b931a4054804aee56be0602135b75bed (diff) | |
parent | 916210a0d4fb658a190a6da1dad82e8482741148 (diff) | |
download | gitlab-ce-1cc9f286bdb27974c84d4ce2b84f6f10c393c568.tar.gz |
Merge branch 'sh-add-bundle-check' into 'master'
21153-selecting-no-one-in-branch-permissions-is-confusing
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.yml | 6 |
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 |