summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/test.yml6
1 files changed, 5 insertions, 1 deletions
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: |