summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKyrylo Silin <silin@kyrylo.org>2021-07-09 23:25:21 +0300
committerKyrylo Silin <silin@kyrylo.org>2021-07-09 23:30:27 +0300
commit8c2a138df7eb8885afdbed9ce0b9df06b94ae9f7 (patch)
tree36c9aed0e83b3f26b9dcc4a4008054cd6ea2beae /.github
parent1c59ceed1ddbc494ab7c3a0e94adeaba5d0cd8e7 (diff)
downloadpry-8c2a138df7eb8885afdbed9ce0b9df06b94ae9f7.tar.gz
.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
Diffstat (limited to '.github')
-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: |