Procházet zdrojové kódy

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 před 4 roky
rodič
revize
60bcc2717d
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      .github/workflows/build.yml

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

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