File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 9191 shell : bash
9292 run : |
9393 echo "::group:: 💎 Install dependencies and generate appraisals 💎"
94- rm -f Gemfile.lock
9594 bundle install
9695
9796 echo "::endgroup::"
@@ -112,13 +111,11 @@ runs:
112111 - name : Test Gem
113112 shell : bash
114113 run : |
115- # 🍿 Test Gem 🍿
116114 if [[ -f "Appraisals" ]]; then
117115 for i in `bundle exec appraisal list | sed 's/-/_/g' `; do
118116 echo "::group::🔎 Appraising ${i}"
119- BUNDLE_GEMFILE=gemfiles/${i}.gemfile bundle install --quiet --jobs=3 --retry=4 && \
120- BUNDLE_GEMFILE=gemfiles/${i}.gemfile bundle show && \
121- BUNDLE_GEMFILE=gemfiles/${i}.gemfile bundle exec rake test || exit
117+ bundle install --gemfile=gemfiles/${i}.gemfile --jobs=3 --retry=4
118+ bundle exec --gemfile=gemfiles/${i}.gemfile rake test
122119 echo "::endgroup::"
123120 done
124121 else
You can’t perform that action at this time.
0 commit comments