From cfe6f459ab51729cf24193a8ebeff93a1f7faa3c Mon Sep 17 00:00:00 2001 From: HAHWUL Date: Sat, 29 Jun 2024 01:02:43 +0900 Subject: [PATCH] chore: Update CI workflow to use bundler cache and bundle exec rake for running tests --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6664d3..da9f0c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,6 @@ permissions: jobs: test: - runs-on: ubuntu-latest strategy: matrix: @@ -23,6 +22,8 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} - bundler-cache: true # runs 'bundle install' and caches installed gems automatically + bundler-cache: true + - name: Ensure Bundler is not in frozen mode + run: bundle config set --local frozen false - name: Run tests run: bundle exec rake