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 for building and testing the project. The most significant changes include downgrading the version of the
github-tag-action, splitting the tag creation and release steps, and modifying the test workflow to trigger only on pull requests.Updates to the build workflow (
.github/workflows/build_dist.yml):github-tag-actionfrom version2.12.0to1.61.0in both the "Gather new package version" and "Create Tag" steps. [1] [2]. ./venv/bin/activate) before bumping the package version inpyproject.toml.git pushcommand with thegithub-push-actionto push changes to themainbranch, ensuring a more robust and reusable workflow.softprops/action-gh-releasefor release creation with autogenerated release notes.Updates to the test workflow (
.github/workflows/tests.yml):pushtrigger for themainanddevbranches, so the workflow now only runs on pull requests targeting any branch.