ci: test Perl 5.10+ to match declared minimum#17
Draft
Koan-Bot wants to merge 2 commits into
Draft
Conversation
The module declares MIN_PERL_VERSION = 5.010 in dist.ini and Makefile.PL, but CI started at 5.14 — leaving 5.10 and 5.12 completely untested. Lower since-perl to v5.10 so the CI matrix actually covers the full declared support range. Closes #16 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6 tasks
Owner
|
@Koan-Bot rebase |
Collaborator
Author
Rebase with requested adjustmentsBranch StatsActions performed
CI statusCI will be checked asynchronously. Automated by Kōan |
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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.
What
Lowers the CI perl-versions matrix from
v5.14tov5.10.Why
The module declares
MIN_PERL_VERSION = 5.010but CI only tested 5.14+, leaving two major Perl releases (5.10, 5.12) completely uncovered. If a 5.14-only feature slipped in, no CI job would catch it — only CPAN smoke testers on old perls.Addresses #16.
How
One-line change in
.github/workflows/testsuite.yml:since-perl: v5.14→v5.10.The code only uses the
//operator (5.10+), and[Test::MinimumVersion]in dist.ini already enforcesmax_target_perl = 5.010at release time. This change adds runtime verification via actual test execution on 5.10 and 5.12.Testing
🤖 Generated with Claude Code