summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2022-10-09 16:08:20 -0600
committerDan Allen <dan.j.allen@gmail.com>2022-10-09 16:08:20 -0600
commit73b58d282c1f5c33361a33d7f42a7d2ce417973c (patch)
tree645bd0f7155cc4c218abae7e5d6bc5c35efa3db1 /.github
parent1c78900002151045ee9d5cc0cbb4b45af7190f88 (diff)
try to reenable Bundler cache on Windows
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8bf5247e..d29ec59d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -86,9 +86,9 @@ jobs:
with:
ruby-version: ${{ matrix.ruby }}
bundler: ${{ matrix.os == 'windows-latest' && startsWith(matrix.ruby, '3.') && '2.3.22' || 'default' }}
- bundler-cache: ${{ matrix.os != 'windows-latest' && github.event_name != 'schedule' }}
+ bundler-cache: ${{ github.event_name != 'schedule' }}
- name: Install dependencies (scheduled build only)
- if: matrix.os == 'windows-latest' || github.event_name == 'schedule'
+ if: github.event_name == 'schedule'
run: |
bundle config --local path vendor/bundle
bundle --jobs 3 --retry 3