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 cafb20b commit b69b655Copy full SHA for b69b655
.github/workflows/ruby.yml
@@ -15,18 +15,19 @@ on:
15
16
jobs:
17
test:
18
-
19
runs-on: ${{ matrix.os }}
20
strategy:
+ fail-fast: false
21
+
22
matrix:
- os: [ubuntu-latest, macos-latest]
23
+ os: [ubuntu-latest, macos-latest, ubuntu-18.04, macos-10.15]
24
ruby-version: ['2.6', '2.7', '3.0']
25
26
steps:
27
- uses: actions/checkout@v2
28
- name: Brew automake
29
run: brew install automake
- if: matrix.os == 'macos-latest'
30
+ if: startsWith(matrix.os, 'macOS')
31
- name: Set up Ruby
32
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
33
# change this to (see https://github.com/ruby/setup-ruby#versioning):
0 commit comments