Skip to content

Commit

Permalink
which rake does not work on Windows on Ruby 2.5+
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Aug 23, 2022
1 parent ae403e8 commit 0a29871
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -115,9 +115,12 @@ jobs:
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/gem_from_github.gemfile

- name: which ruby, rake, bundle
- name: which ruby, bundle
shell: bash
run: which -a ruby rake bundle
run: which -a ruby bundle
- name: which rake
run: which -a rake
if: "!startsWith(matrix.os, 'windows')"
- name: where ruby, rake, bundle
if: startsWith(matrix.os, 'windows')
run: |
Expand Down

0 comments on commit 0a29871

Please sign in to comment.