From 2a1e3add0e3bec4d1f0d0dec1d5b8b9cb8c1c577 Mon Sep 17 00:00:00 2001 From: HAHWUL Date: Sat, 29 Jun 2024 00:55:55 +0900 Subject: [PATCH] chore: Enable bundler cache in CI workflow and update test command --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43dcbc3..d23cce8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,6 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} - bundler-cache: false # runs 'bundle install' and caches installed gems automatically + bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run tests - run: bundle exec rake + run: rspec