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 8a5230bCopy full SHA for 8a5230b
.github/workflows/check.yml
@@ -8,10 +8,11 @@ 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'
@@ -20,16 +21,18 @@ jobs:
20
21
- '3.4'
22
23
name: Ruby ${{ matrix.ruby }}
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