Skip to content

Commit 22e9e6f

Browse files
committed
ci: insert Rails 7.2 and 8.0 into the testing matrix
1 parent c11567b commit 22e9e6f

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,20 +56,33 @@ jobs:
5656
- { activesupport: "7.0", ruby: "3.1" }
5757
- { activesupport: "7.0", ruby: "3.2" }
5858
- { activesupport: "7.0", ruby: "3.3" }
59-
- { activesupport: "7.0", ruby: "ruby-head" }
59+
- { activesupport: "7.0", ruby: "3.4" }
6060
- { activesupport: "7.0", ruby: "jruby" }
6161
# rails 7.1
6262
- { activesupport: "7.1", ruby: "2.7" }
6363
- { activesupport: "7.1", ruby: "3.0" }
6464
- { activesupport: "7.1", ruby: "3.1" }
6565
- { activesupport: "7.1", ruby: "3.2" }
6666
- { activesupport: "7.1", ruby: "3.3" }
67-
- { activesupport: "7.1", ruby: "ruby-head" }
67+
- { activesupport: "7.1", ruby: "3.4" }
6868
- { activesupport: "7.1", ruby: "jruby" }
6969
# rails 7.2
70-
- { activesupport: "edge", ruby: "3.1" }
70+
- { activesupport: "7.2", ruby: "3.1" }
71+
- { activesupport: "7.2", ruby: "3.2" }
72+
- { activesupport: "7.2", ruby: "3.3" }
73+
- { activesupport: "7.2", ruby: "3.4" }
74+
- { activesupport: "7.2", ruby: "ruby-head" }
75+
- { activesupport: "7.2", ruby: "jruby" }
76+
# rails 8.0
77+
- { activesupport: "8.0", ruby: "3.2" }
78+
- { activesupport: "8.0", ruby: "3.3" }
79+
- { activesupport: "8.0", ruby: "3.4" }
80+
- { activesupport: "8.0", ruby: "ruby-head" }
81+
- { activesupport: "8.0", ruby: "jruby" }
82+
# rails 8.1
7183
- { activesupport: "edge", ruby: "3.2" }
7284
- { activesupport: "edge", ruby: "3.3" }
85+
- { activesupport: "edge", ruby: "3.4" }
7386
- { activesupport: "edge", ruby: "ruby-head" }
7487
- { activesupport: "edge", ruby: "jruby" }
7588
env:

gemfiles/active_support_7.2.gemfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# frozen_string_literal: true
2+
3+
source "https://rubygems.org"
4+
5+
gem "activesupport", "~> 7.2.0"
6+
7+
gemspec path: "../"

gemfiles/active_support_8.0.gemfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# frozen_string_literal: true
2+
3+
source "https://rubygems.org"
4+
5+
gem "activesupport", "~> 8.0.0"
6+
7+
gemspec path: "../"

0 commit comments

Comments
 (0)