Browse Source

Hide bundler post-install messages (#815)

* Hide bundler post-install messages

These may be useful in dev but in CI they're noisy
Andy Waite 4 years ago
parent
commit
60bcc2717d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      .github/workflows/build.yml

+ 2 - 1
.github/workflows/build.yml

@@ -27,6 +27,7 @@ jobs:
           rm -f ${GITHUB_WORKSPACE}/Gemfile.lock
           rm -f ${GITHUB_WORKSPACE}/Gemfile.lock
       - name: Run Tests
       - name: Run Tests
         run: |
         run: |
-          bundle config set with docs
+          bundle config set --with docs
+          bundle config set ignore_messages true
           bundle
           bundle
           bundle exec rake test
           bundle exec rake test