Skip to content

Commit 68aeca2

Browse files
Merge branch 'synth:main' into support-common-jwks
2 parents ca5764c + 21f4204 commit 68aeca2

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/ruby.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,23 @@
88
name: Ruby
99

1010
on:
11-
push:
1211
pull_request:
1312

1413
jobs:
1514
test:
1615

17-
runs-on: ubuntu-latest
1816
strategy:
1917
matrix:
20-
ruby-version: ['3.0']
18+
os: [ubuntu-latest, macos-latest]
19+
ruby-version: ['3.0', '3.1', '3.2', '3.3']
20+
runs-on: ${{ matrix.os }}
2121

2222
steps:
2323
- uses: actions/checkout@v2
2424
- name: Set up Ruby
2525
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
2626
# change this to (see https://github.com/ruby/setup-ruby#versioning):
27-
# uses: ruby/setup-ruby@v1
28-
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
27+
uses: ruby/setup-ruby@v1
2928
with:
3029
ruby-version: ${{ matrix.ruby-version }}
3130
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

0 commit comments

Comments
 (0)