Skip to content

Commit 15b43f6

Browse files
Update config for Github Actions (#8)
1 parent a13c886 commit 15b43f6

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/check.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,28 +8,31 @@ 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'
1819
- '3.2'
1920
- '3.3'
2021
- '3.4'
2122

22-
name: Ruby ${{ matrix.ruby }}
23+
name: Ruby ${{ matrix.ruby }} running on ${{ matrix.os }}
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)