update CI configuration to include Ruby 2.7 in the testing matrix#8
Closed
update CI configuration to include Ruby 2.7 in the testing matrix#8
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR updates the CI configuration to include Ruby 2.7 in the testing matrix alongside the existing Ruby 3.1.0 and head versions. The change expands test coverage to support an additional Ruby version.
Key Changes
- Adds Ruby 2.7 to the CI testing matrix
- Removes commented-out line that previously included Ruby 2.7.4
ocvit
requested changes
Aug 7, 2025
.github/workflows/ci.yml
Outdated
| matrix: | ||
| ruby-version: ['3.1.0','head'] # test only recommend Ruby version (and stable version on the gitaction server) | ||
| # ruby-version: ['2.7.4','3.1.0','head'] | ||
| ruby-version: ['2.7', '3.1.0','head'] # test only recommend Ruby version (and stable version on the gitaction server) |
Contributor
There was a problem hiding this comment.
Let's be more explicit and check all supported Ruby versions.
Suggested change
| ruby-version: ['2.7', '3.1.0','head'] # test only recommend Ruby version (and stable version on the gitaction server) | |
| ruby-version: ["2.7", "3.0", "3.1", "3.2", "3.3", "3.4", "head"] # check all supported Ruby versions, plus the latest stable one |
Contributor
Author
There was a problem hiding this comment.
trying to get 2.7 to work on github action is hard because the github plugin is buggy.
…ion for compatibility
Contributor
Author
|
GitHub Action ruby is too buggy to work with the Ruby matrix. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.