File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -85,16 +85,24 @@ runs:
85858686 with :
8787 ruby-version : " ${{ inputs.ruby }}"
88- bundler : " latest"
8988 working-directory : " ${{ steps.setup.outputs.gem_dir }}"
9089
90+ - name : Install dependencies
91+ shell : bash
92+ run : |
93+ echo "::group:: 💎 Install dependencies and generate appraisals 💎"
94+
95+ bundle install
96+
97+ echo "::endgroup::"
98+ working-directory : " ${{ steps.setup.outputs.gem_dir }}"
99+
91100 - name : Install dependencies and generate appraisals
92101 if : " ${{ steps.setup.outputs.appraisals == 'true' }}"
93102 shell : bash
94103 run : |
95104 echo "::group:: 💎 Install dependencies and generate appraisals 💎"
96105
97- bundle install # --quiet --jobs=3 --retry=4
98106 bundle exec appraisal clean
99107 bundle exec appraisal generate
100108
@@ -115,7 +123,6 @@ runs:
115123 done
116124 else
117125 echo "::group::🔎 Running Tests Standalone"
118- bundle install --quiet --jobs=3 --retry=4 && \
119126 bundle exec rake test
120127 echo "::endgroup::"
121128 fi
You can’t perform that action at this time.
0 commit comments