Skip to content

Commit a99af84

Browse files
committed
Expand CI Matrix
Support Rails 7.1 and 7.2. Experiment with Ruby 3.3.
1 parent 97eda74 commit a99af84

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

.github/workflows/ci.yml

+9-6
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,22 @@ jobs:
1616
- "3.0"
1717
- "3.1"
1818
- "3.2"
19+
- "3.3"
1920
rails-version:
20-
- "7.1"
21-
- "7.0"
2221
- "6.1"
22+
- "7.0"
23+
- "7.1"
24+
- "7.2"
2325
- "main"
2426
selenium-browser:
2527
- "headless_chrome"
2628
- "headless_firefox"
2729
exclude:
28-
- ruby-version: "2.7"
29-
rails-version: "main"
30-
- ruby-version: "3.0"
31-
rails-version: "main"
30+
- { ruby-version: "2.7", rails-version: "7.2" }
31+
- { ruby-version: "2.7", rails-version: "main" }
32+
- { ruby-version: "3.0", rails-version: "7.2" }
33+
- { ruby-version: "3.0", rails-version: "main" }
34+
- { ruby-version: "3.1", rails-version: "main" }
3235

3336
env:
3437
RAILS_VERSION: "${{ matrix.rails-version }}"

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
* Expand version matrix to include `[email protected]` and `[email protected]`
10+
11+
*Sean Doyle*
12+
913
* Don't validate Checkbox groups until `validateOn` events
1014

1115
*Sean Doyle*

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ gemspec
77
# To use a debugger
88
# gem 'byebug', group: [:development, :test]
99

10-
rails_version = ENV.fetch("RAILS_VERSION", "6.1")
10+
rails_version = ENV.fetch("RAILS_VERSION", "7.2")
1111

1212
if rails_version == "main"
1313
rails_constraint = { github: "rails/rails" }

0 commit comments

Comments
 (0)