Skip to content

Commit

Permalink
Expand CI Matrix
Browse files Browse the repository at this point in the history
Support Rails 7.1 and 7.2. Experiment with Ruby 3.3.
  • Loading branch information
seanpdoyle committed Oct 24, 2024
1 parent 6a7bfb3 commit bb01206
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,19 @@ jobs:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
rails-version:
- "7.0"
- "6.1"
- "main"
- "7.0"
- "7.1"
- "7.2"
include:
- { ruby-version: "3.2", rails-version: "main" }
- { ruby-version: "3.3", rails-version: "main" }
exclude:
- { ruby-version: "2.7", rails-version: "7.2" }
- { ruby-version: "3.0", rails-version: "7.2" }

env:
RAILS_VERSION: ${{ matrix.rails-version }}
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Expand matrix of supported versions to include `[email protected]` and `[email protected]`.

## 0.2.2 (Jan 12, 2023)

- Qualify call to `render "turbo_stream_button_tag"` with `application/`
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ gemspec
# Start debugger with binding.b [https://github.com/ruby/debug]
# gem "debug", ">= 1.0.0"

rails_version = ENV.fetch("RAILS_VERSION", "7.0")
rails_version = ENV.fetch("RAILS_VERSION", "7.2")

rails_constraint = if rails_version == "main"
{github: "rails/rails"}
Expand Down

0 comments on commit bb01206

Please sign in to comment.