Skip to content

Commit 0a29871

Browse files
committed
which rake does not work on Windows on Ruby 2.5+
1 parent ae403e8 commit 0a29871

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,12 @@ jobs:
115115
env:
116116
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/gem_from_github.gemfile
117117

118-
- name: which ruby, rake, bundle
118+
- name: which ruby, bundle
119119
shell: bash
120-
run: which -a ruby rake bundle
120+
run: which -a ruby bundle
121+
- name: which rake
122+
run: which -a rake
123+
if: "!startsWith(matrix.os, 'windows')"
121124
- name: where ruby, rake, bundle
122125
if: startsWith(matrix.os, 'windows')
123126
run: |

0 commit comments

Comments
 (0)