Skip to content

Commit 6fdc0dd

Browse files
committed
ci: update ci matrix with rails 7.1 and ruby 3.3
1 parent a14001a commit 6fdc0dd

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed

.github/workflows/ci.yml

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ jobs:
3535
strategy:
3636
fail-fast: false
3737
matrix:
38-
activesupport: ["6.1", "7.0", "edge"]
39-
ruby: ["2.7", "3.0", "3.1", "3.2", "ruby-head", "jruby"]
4038
include:
4139
# rails 5.2
4240
- { activesupport: "5.2", ruby: "2.5" }
@@ -48,6 +46,32 @@ jobs:
4846
# rails 6.1
4947
- { activesupport: "6.1", ruby: "2.5" }
5048
- { activesupport: "6.1", ruby: "2.6" }
49+
- { activesupport: "6.1", ruby: "2.7" }
50+
- { activesupport: "6.1", ruby: "3.0" }
51+
- { activesupport: "6.1", ruby: "3.1" }
52+
- { activesupport: "6.1", ruby: "3.2" }
53+
# rails 7.0
54+
- { activesupport: "7.0", ruby: "2.7" }
55+
- { activesupport: "7.0", ruby: "3.0" }
56+
- { activesupport: "7.0", ruby: "3.1" }
57+
- { activesupport: "7.0", ruby: "3.2" }
58+
- { activesupport: "7.0", ruby: "3.3" }
59+
- { activesupport: "7.0", ruby: "ruby-head" }
60+
- { activesupport: "7.0", ruby: "jruby" }
61+
# rails 7.1
62+
- { activesupport: "7.1", ruby: "2.7" }
63+
- { activesupport: "7.1", ruby: "3.0" }
64+
- { activesupport: "7.1", ruby: "3.1" }
65+
- { activesupport: "7.1", ruby: "3.2" }
66+
- { activesupport: "7.1", ruby: "3.3" }
67+
- { activesupport: "7.1", ruby: "ruby-head" }
68+
- { activesupport: "7.1", ruby: "jruby" }
69+
# rails 7.2
70+
- { activesupport: "edge", ruby: "3.1" }
71+
- { activesupport: "edge", ruby: "3.2" }
72+
- { activesupport: "edge", ruby: "3.3" }
73+
- { activesupport: "edge", ruby: "ruby-head" }
74+
- { activesupport: "edge", ruby: "jruby" }
5175
env:
5276
BUNDLE_GEMFILE: gemfiles/active_support_${{ matrix.activesupport }}.gemfile
5377
steps:
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.1.0"
6+
7+
gemspec path: "../"

0 commit comments

Comments
 (0)