Skip to content

Commit 8a5230b

Browse files
Update config for Github Actions
1 parent a13c886 commit 8a5230b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/check.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ on:
88

99
jobs:
1010
Test-Ruby:
11-
runs-on: ubuntu-latest
12-
1311
strategy:
1412
matrix:
13+
os:
14+
- ubuntu-latest
15+
- macos-latest
1516
ruby:
1617
- '3.0'
1718
- '3.1'
@@ -20,16 +21,18 @@ jobs:
2021
- '3.4'
2122

2223
name: Ruby ${{ matrix.ruby }}
24+
runs-on: ${{ matrix.os }}
2325

2426
steps:
2527
- name: Check out repository code
2628
uses: actions/checkout@v4
2729

2830
- name: Install Ruby
2931
uses: ruby/setup-ruby@v1
32+
env:
33+
BUNDLE_WITH: development
3034
with:
3135
bundler-cache: true
32-
bundler-with: development
3336
ruby-version: ${{ matrix.ruby }}
3437

3538
- name: Debug Environment

0 commit comments

Comments
 (0)