Skip to content

Commit 62bfe1f

Browse files
committed
Add Ruby 3.4 to CI build
1 parent 55bd802 commit 62bfe1f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ruby.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
strategy:
3636
matrix:
37-
ruby-version: ["2.7", "3.0", "3.1", "3.2", "3.3"]
37+
ruby-version: ["2.7", "3.0", "3.1", "3.2", "3.3", "3.4"]
3838

3939
steps:
4040
- uses: actions/checkout@v4
@@ -54,7 +54,7 @@ jobs:
5454
- name: Set up Ruby
5555
uses: ruby/setup-ruby@v1
5656
with:
57-
ruby-version: "3.3"
57+
ruby-version: "3.4"
5858
bundler-cache: true
5959
- name: Profile Memory Allocation
6060
run: bundle exec rake check:memory

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,7 @@ group :development do
3535
# Ruby 3 no longer ships with a web server
3636
gem 'puma' if RUBY_VERSION >= '3'
3737
gem 'shotgun'
38+
39+
gem "mutex_m" if RUBY_VERSION >= '3.4'
40+
gem "base64" if RUBY_VERSION >= '3.4'
3841
end

0 commit comments

Comments
 (0)