From fde332417161c1cc368c139014f5787969c3bddb Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Fri, 13 Nov 2020 10:38:40 +0100 Subject: [PATCH] Remove redundant bundle install in the usage examples --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 82e8bba..fbafd1a 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,6 @@ jobs: 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 ``` @@ -93,7 +92,6 @@ jobs: with: ruby-version: ${{ matrix.ruby }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - - run: bundle install - run: bundle exec rake ```