Skip to content

Commit 3415937

Browse files
authored
Merge pull request #129 from bastelfreak/ruby33
Add Ruby 3.3 to CI
2 parents 3c6ec09 + 0c9a4b4 commit 3415937

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
if: github.repository_owner == 'voxpupuli'
1212
steps:
1313
- uses: actions/checkout@v4
14-
- name: Install Ruby 3.2
14+
- name: Install Ruby 3.3
1515
uses: ruby/setup-ruby@v1
1616
with:
17-
ruby-version: '3.2'
17+
ruby-version: '3.3'
1818
env:
1919
BUNDLE_WITHOUT: release
2020
- name: Build gem

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install Ruby ${{ matrix.ruby }}
1818
uses: ruby/setup-ruby@v1
1919
with:
20-
ruby-version: "3.2"
20+
ruby-version: "3.3"
2121
bundler-cache: true
2222
- name: Run Rubocop
2323
run: bundle exec rake rubocop
@@ -33,6 +33,7 @@ jobs:
3333
- ruby: "3.1"
3434
- ruby: "3.2"
3535
coverage: "yes"
36+
- ruby: "3.3"
3637
env:
3738
COVERAGE: ${{ matrix.coverage }}
3839
name: RSpec - Ruby ${{ matrix.ruby }}

0 commit comments

Comments
 (0)