Skip to content

Commit f8c7383

Browse files
committed
Add CI coverage for Rails 8
1 parent 50bd2a8 commit f8c7383

File tree

4 files changed

+27
-0
lines changed

4 files changed

+27
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@ jobs:
5151
- ruby_version: "3.3"
5252
rails_version: "7.2"
5353
mode: "capture_patch_enabled"
54+
- ruby_version: "3.3"
55+
rails_version: "8.0"
56+
mode: "capture_patch_disabled"
57+
- ruby_version: "3.3"
58+
rails_version: "8.0"
59+
mode: "capture_patch_enabled"
5460
- ruby_version: "head"
5561
rails_version: "main"
5662
mode: "capture_patch_disabled"

Appraisals

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ appraise "rails-7.2" do
2828
gem "tailwindcss-rails", "~> 2.0"
2929
end
3030

31+
appraise "rails-8.0" do
32+
gem "rails", "~> 8.0"
33+
gem "tailwindcss-rails", "~> 2.0"
34+
gem "turbo-rails", "~> 1"
35+
end
36+
3137
appraise "rails-main" do
3238
gem "rails", github: "rails/rails", branch: "main"
3339
gem "tailwindcss-rails", "~> 2.0"

docs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ nav_order: 5
1818

1919
*Joel Hawksley*
2020

21+
* Add CI coverage for Rails 8.
22+
23+
*Joel Hawksley*
24+
2125
## 3.20.0
2226

2327
* Allow rendering `with_collection` to accept an optional `spacer_component` to be rendered between each item.

gemfiles/rails_8.0.gemfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
ruby "~> 3.3"
6+
7+
gem "rails", "~> 8.0"
8+
gem "tailwindcss-rails", "~> 2.0"
9+
gem "turbo-rails", "~> 1"
10+
11+
gemspec path: "../"

0 commit comments

Comments
 (0)