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 2fb293d commit c84daefCopy full SHA for c84daef
.github/workflows/ci.yml
@@ -42,8 +42,8 @@ jobs:
42
uses: ruby/setup-ruby-pkgs@v1
43
with:
44
ruby-version: ${{ matrix.ruby }}
45
- apt-get: ragel
46
- brew: ragel
+ apt-get: "${{ startsWith(matrix.ruby, 'jruby') && 'ragel' || '' }}"
+ brew: "${{ startsWith(matrix.ruby, 'jruby') && 'ragel' || '' }}"
47
48
- run: |
49
bundle config --without benchmark
@@ -71,7 +71,7 @@ jobs:
71
72
73
ruby-version: "3.3"
74
- apt-get: ragel valgrind
+ apt-get: valgrind
75
76
77
0 commit comments