From e77faa0af018188bb06d470808170ad7caa6a0aa Mon Sep 17 00:00:00 2001 From: Patrik Ragnarsson Date: Sat, 2 Jan 2021 03:32:46 +0100 Subject: [PATCH] CI: No need to run bundle install (#2432) https://github.com/ruby/setup-ruby runs `bundle install` We can see that the step takes 0 seconds at https://github.com/middleman/middleman/runs/1631653509?check_suite_focus=true --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4c2d235d..796c697c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,8 +18,6 @@ jobs: with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true - - name: Install dependencies - run: bundle install - name: Runs linter run: bundle exec rake rubocop - name: Runs tests