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 a13c886 commit 15b43f6Copy full SHA for 15b43f6
.github/workflows/check.yml
@@ -8,28 +8,31 @@ on:
8
9
jobs:
10
Test-Ruby:
11
- runs-on: ubuntu-latest
12
-
13
strategy:
14
matrix:
+ os:
+ - ubuntu-latest
15
+ - macos-latest
16
ruby:
17
- '3.0'
18
- '3.1'
19
- '3.2'
20
- '3.3'
21
- '3.4'
22
- name: Ruby ${{ matrix.ruby }}
23
+ name: Ruby ${{ matrix.ruby }} running on ${{ matrix.os }}
24
+ runs-on: ${{ matrix.os }}
25
26
steps:
27
- name: Check out repository code
28
uses: actions/checkout@v4
29
30
- name: Install Ruby
31
uses: ruby/setup-ruby@v1
32
+ env:
33
+ BUNDLE_WITH: development
34
with:
35
bundler-cache: true
- bundler-with: development
36
ruby-version: ${{ matrix.ruby }}
37
38
- name: Debug Environment
0 commit comments