Skip to content

Commit 217c988

Browse files
committed
Skip which bundle test on mingw, mswin and ucrt
* See #658
1 parent c6d4d2a commit 217c988

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/test.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,14 @@ jobs:
143143
env:
144144
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/gem_from_github.gemfile
145145

146-
- name: which ruby, bundle
146+
- name: which ruby
147147
shell: bash
148-
run: which -a ruby bundle
148+
run: which -a ruby
149+
- name: which bundle
150+
shell: bash
151+
run: which -a bundle
152+
# https://github.com/ruby/setup-ruby/issues/658
153+
if: "matrix.ruby != 'mingw' && matrix.ruby != 'mswin' && matrix.ruby != 'ucrt'"
149154
- name: which rake
150155
run: which -a rake
151156
if: "!startsWith(matrix.os, 'windows')"

0 commit comments

Comments
 (0)