From 8801539b041f23dd31dd8aa620e7cc6a815e8722 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Mon, 27 Sep 2021 14:25:33 +0200 Subject: [PATCH] CI: use bundler-cache, and 'bundle exec' --- .github/workflows/test.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e82ced2..c269a15 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,6 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - - name: Install dependencies - run: bundle install + bundler-cache: true # 'bundle install' and cache gems - name: Run test - run: rake test + run: bundle exec rake test