From 7584a3491fa2c530ccd89fe78c4c360110ca083b Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Wed, 6 Oct 2021 13:47:12 +0200 Subject: [PATCH] CI: use bundler-cache: true --- .github/workflows/test.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ecb2380..9c61902 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,9 +16,6 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - - name: Install dependencies - run: | - gem install bundler --no-document - bundle install + bundler-cache: true # 'bundle install' and cache gems - name: Run test - run: rake test + run: bundle exec rake test