From 98736058ed34ba1071ac88db4e001f96ecc247e4 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Wed, 8 Sep 2021 19:01:55 +0200 Subject: [PATCH] build: Use bundler-cache to install deps --- .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 647bad0..38537b1 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 # Run "bundle install", and cache the result automatically. - name: Run test - run: rake test + run: bundle exec rake test