-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Ruby 3.1 to the CI matrix #55
Add Ruby 3.1 to the CI matrix #55
Conversation
Signed-off-by: Peter Goldstein <[email protected]>
Thanks for this! That's one reason to put each version on its own line, but I guess it would be fairly long :) |
@petergoldstein Care to fix the link checker? Looks like |
Signed-off-by: Peter Goldstein <[email protected]>
@dblock I just pushed up a commit removing the dead link. Please let me know if you need anything else. Thanks. |
@@ -20,7 +20,7 @@ jobs: | |||
strategy: | |||
fail-fast: false | |||
matrix: | |||
ruby: [ 2.5, 2.6, 2.7, 3.0, jruby-9.3 ] | |||
ruby: [ 2.5, 2.6, 2.7, '3.0', 3.1, jruby-9.3 ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need to put 3.0 in single quotes ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See the comment and screenshot above in the PR. An unquoted 3.0 is truncated to 3.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah my bad, didn't read the details. I thought we are only adding 3.1
Signed-off-by: Peter Goldstein [email protected]
Description
Adds Ruby 3.1 to the CI matrix
Issues Resolved
Fixes a bug in the existing CI matrix. Github Actions will truncate an unquoted 3.0 to 3, and thus pull in the latest Ruby 3 version for that entry in the matrix. At this time that's Ruby 3.1.1, which is not what's intended. Adding quotes to the 3.0 resolves this issue.
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.