From 11082225e459fa3affba355ca510939dc9438b72 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Thu, 22 Oct 2020 14:13:53 +0200 Subject: [PATCH] Mention `bundler-cache: true` in the README examples --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 36c0944..70402bd 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,7 @@ jobs: - uses: ruby/setup-ruby@v1 with: ruby-version: 2.6 # Not needed with a .ruby-version file + bundler-cache: true # runs 'bundle install' and caches installed gems automatically - run: bundle install - run: bundle exec rake ``` @@ -91,6 +92,7 @@ jobs: - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} + bundler-cache: true # runs 'bundle install' and caches installed gems automatically - run: bundle install - run: bundle exec rake ```