Skip to content

Commit 1661228

Browse files
committed
Fix allocation counts in rendering_test + add Ruby v3.5 / Rails 8.1 to matrix
1 parent 016d2ab commit 1661228

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,12 @@ jobs:
8383
- ruby_version: "3.5"
8484
rails_version: "8.0"
8585
mode: "capture_patch_enabled"
86+
- ruby_version: "3.5"
87+
rails_version: "8.1"
88+
mode: "capture_patch_disabled"
89+
- ruby_version: "3.5"
90+
rails_version: "8.1"
91+
mode: "capture_patch_enabled"
8692
env:
8793
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails_version }}.gemfile
8894
steps:

test/sandbox/test/rendering_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_render_inline_allocations
1919
if Rails.version.to_f < 8.0
2020
{"3.3.10" => 126, "3.2.9" => 129, "3.1.7" => 130, "3.0.7" => 131}
2121
elsif Rails.version.split(".").first(2).map(&:to_i) == [8, 0]
22-
{"3.5.0" => 117, "3.4.7" => 122, "3.3.10" => 134}
22+
{"3.5.0" => 118, "3.4.7" => 122, "3.3.10" => 134}
2323
else
2424
{"3.4.7" => 120}
2525
end

0 commit comments

Comments
 (0)