Skip to content

Commit

Permalink
Skip which bundle test on mingw, mswin and ucrt
Browse files Browse the repository at this point in the history
* See #658
  • Loading branch information
eregon committed Nov 5, 2024
1 parent c6d4d2a commit 217c988
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,14 @@ jobs:
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/gem_from_github.gemfile

- name: which ruby, bundle
- name: which ruby
shell: bash
run: which -a ruby bundle
run: which -a ruby
- name: which bundle
shell: bash
run: which -a bundle
# https://github.com/ruby/setup-ruby/issues/658
if: "matrix.ruby != 'mingw' && matrix.ruby != 'mswin' && matrix.ruby != 'ucrt'"
- name: which rake
run: which -a rake
if: "!startsWith(matrix.os, 'windows')"
Expand Down

0 comments on commit 217c988

Please sign in to comment.