From a0d9524b8d16ce6a54a23b57ba0847546e693d90 Mon Sep 17 00:00:00 2001 From: Andy Pfister Date: Tue, 20 Feb 2024 08:45:37 +0100 Subject: [PATCH] Run `bundle install` instead of just `bundle` --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e4fd14f..08d3ad2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,10 +37,10 @@ jobs: bundler-cache: false - name: Bundle for Appraisal - run: bundle + run: bundle install - name: Install Appraisal dependencies - run: bundle exec appraisal rails-${{ matrix.rails }} bundle + run: bundle exec appraisal rails-${{ matrix.rails }} bundle install - name: Run tests run: bundle exec appraisal rails-${{ matrix.rails }} bundle exec rspec