You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix matrix configuration to use static include entries
The previous approach used conditional expressions within the include
section, which caused GitHub Actions to create matrix entries with
false/empty values when conditions weren't met. This resulted in a
(false, false, false) matrix entry that failed.
Solution: Changed to match the pattern used in gem-tests.yml and
examples.yml - use static entries in include section and rely solely
on exclude section for conditional logic.
Changes:
- Converted matrix from array-based to include-based for both jobs
- Made include entries static (always add both latest and minimum)
- Keep exclude section to conditionally remove minimum on PRs
This ensures only valid matrix combinations are created.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
0 commit comments