Skip to content

Commit 4e8b130

Browse files
committed
CI
1 parent c5d3e14 commit 4e8b130

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build-and-test-extension.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,15 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [macos-latest, ubuntu-latest]
26+
ruby-version: ${{fromJSON(vars.BUILD_AND_TEST_EXTENSION_RUBY_VERSIONS)}}
2627

2728
steps:
2829
- uses: actions/checkout@v3
2930

3031
- name: Set up Ruby
3132
uses: ruby/setup-ruby@v1
3233
with:
33-
ruby-version: '3.0'
34+
ruby-version: ${{matrix.ruby-version}}
3435

3536
- name: Install dependencies (macOS)
3637
if: startsWith(matrix.os, 'macos')

.github/workflows/publish-gem.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Ruby
1818
uses: ruby/setup-ruby@v1
1919
with:
20-
ruby-version: '3.0'
20+
ruby-version: "${{vars.PUBLISH_GEM_RUBY_VERSION}}"
2121

2222
- name: Publish to GPR
2323
env:

0 commit comments

Comments
 (0)