From 49f688e7ceb09067ac6228e808daa483ffdfef7a Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Fri, 22 Aug 2025 06:33:46 +0200 Subject: [PATCH] ci: add missing Bundler invocation --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40875e6..1440771 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,8 +36,9 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} + bundler-cache: true # bundle install and cache gems - name: Run tests run: bundle exec rake env: REDIS_HOST: localhost - REDIS_PORT: 6379 \ No newline at end of file + REDIS_PORT: 6379