From 8c2a138df7eb8885afdbed9ce0b9df06b94ae9f7 Mon Sep 17 00:00:00 2001 From: Kyrylo Silin Date: Fri, 9 Jul 2021 23:25:21 +0300 Subject: .github/workflows/test: disable bundler cache Unfortunately, there's a mysterious bug with Ruby 2.4 & 2.5 when we cache gems: https://github.com/pry/pry/actions/runs/1016360216 --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e3a6abda..c722ac1c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,7 +31,11 @@ jobs: - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - bundler-cache: true + + # Run manually, don't cache deps due to a bug with Ruby 2.4 and Ruby 2.5 + # https://github.com/pry/pry/actions/runs/1016360216 + - name: Install dependencies + run: bundle install - name: Rubocop lint run: | -- cgit v1.2.1