Chore GitHub workflows: refine triggers, align naming, and improve matrices#67
Merged
Borda merged 3 commits intoMiXaiLL76:mainfrom Jan 23, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates GitHub Actions workflows to broaden CI coverage on main pushes, standardize Python matrix naming, and expand unit test version coverage.
Changes:
- Added
pushtriggers formaintodocs.ymlandtest.yaml. - Standardized matrix key to
python-versionand updated job display names accordingly. - Expanded
unittest.ymlto run against Python 3.9–3.13 withfail-fast: false.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| .github/workflows/unittest.yml | Renames workflow and adds a Python-version matrix for unit tests. |
| .github/workflows/test.yaml | Adds push trigger for main and renames matrix key to python-version. |
| .github/workflows/docs.yml | Adds push trigger for main to ensure docs build runs on direct pushes. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Borda
commented
Jan 23, 2026
Borda
commented
Jan 23, 2026
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Owner
|
Hey, friend! Thanks so much for the PR! |
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.
This pull request updates the GitHub Actions workflows to improve CI/CD coverage and maintain consistency in Python version handling. The most important changes are grouped below:
Workflow triggers and coverage:
pushtrigger for themainbranch to both the documentation build (docs.yml) and test workflows (test.yaml), ensuring these workflows run on direct pushes as well as pull requests. [1] [2]Python version matrix standardization:
python-versionmatrix key instead ofpythonv, and expanded the matrix inunittest.ymlto test across Python versions 3.9 through 3.13. [1] [2]Workflow naming:
.github/workflows/unittest.ymlfrom "Test" to "Unittests" for clarity.