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.
2 parents 564c5ca + 04d6e5f commit c233be9Copy full SHA for c233be9
.github/workflows/ci.yml
@@ -3,6 +3,7 @@ name: CI
3
on:
4
- push
5
- pull_request
6
+- workflow_dispatch
7
8
jobs:
9
ruby-versions:
@@ -35,18 +36,16 @@ jobs:
35
36
- { os: windows-latest, ruby: jruby-head }
37
38
steps:
- - uses: actions/checkout@v2
39
+ - uses: actions/checkout@v3
40
41
- name: Set up Ruby
- uses: ruby/setup-ruby@v1
42
+ uses: ruby/setup-ruby-pkgs@v1
43
with:
44
ruby-version: ${{ matrix.ruby }}
-
45
- - run: sudo apt install ragel
46
- if: ${{ startsWith(matrix.os, 'ubuntu') }}
47
48
- - run: brew install ragel
49
- if: ${{ startsWith(matrix.os, 'macos') }}
+ apt-get: ragel
+ brew: ragel
+ # only needed for Ruby 2.3
+ mingw: ragel
50
51
- run: bundle install
52
0 commit comments