From 02ec51a0998ee99c7f688861a94256ad0af9e2bf Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Tue, 10 Sep 2024 04:34:22 +0200 Subject: [PATCH] chore(CI): use bundler-cache: true (#116) --- .github/workflows/ci.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74164cb..34afceb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,19 +28,7 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - - name: Update rubygems - run: | - gem update --system - - uses: actions/cache@v3 - with: - path: vendor/bundle - key: bundle-use-ruby-${{ matrix.ruby }}-${{ hashFiles('**/Gemfile.lock') }} - restore-keys: | - bundle-use-ruby-${{ matrix.ruby }}- - - name: Bundle install - run: | - bundle config path vendor/bundle - bundle install --jobs 4 --retry 3 + bundler-cache: true # 'bundle install' and cache gems - name: Run specs env: SIMPLECOV: ${{ matrix.coverage }}