We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a454ee6 commit 1591889Copy full SHA for 1591889
.github/workflows/test.yml
@@ -42,10 +42,15 @@ jobs:
42
- uses: actions/checkout@v4
43
- name: Set up Ruby
44
uses: ruby/setup-ruby@v1
45
+ if: matrix.os != 'windows-latest'
46
with:
47
ruby-version: ${{ matrix.ruby }}
48
bundler-cache: true # 'bundle install' and cache
- - run: choco install gperf
49
- if: ${{ matrix.ruby == 'mswin' }}
+ - name: Install gperf for MinGW/UCRT builds
50
+ uses: ruby/setup-ruby-pkgs@v1
51
+ if: matrix.os == 'windows-latest'
52
+ with:
53
+ ruby-version: ${{ matrix.ruby }}
54
+ mingw: gperf
55
- name: Run test
56
run: bundle exec rake compile test
0 commit comments