Skip to content

Commit f17e556

Browse files
committed
🐛 explicitly use Ruby 3
1 parent 9448fb3 commit f17e556

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/build-branch.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,19 @@ jobs:
2222
bundler-cache: true
2323
- name: Run tests
2424
run: bundle exec rake
25+
2526
# release the tag to rubygems
2627
release:
2728
if: github.ref == 'refs/heads/main'
2829
runs-on: ubuntu-latest
30+
strategy:
31+
matrix:
32+
ruby-version: ['3.0']
2933
steps:
3034
- uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
35+
with:
36+
ruby-version: ${{ matrix.ruby-version }}
37+
bundler-cache: true
3138
- uses: actions/checkout@v1
3239
- name: Release Gem
3340
uses: cadwallion/publish-rubygems-action@master

0 commit comments

Comments
 (0)