-
Notifications
You must be signed in to change notification settings - Fork 78
Description
Is your feature request related to a problem?
Currently, there is no automated way to run tests before publishing (merging) changes to the repository, which can result in undetected bugs or issues being released.
Who benefits?
Contributors and maintainers of the repository will benefit by ensuring only tested code is published, improving reliability and reducing manual testing overhead.
How important is this feature?
Important
Describe the solution you'd like
Implement automated Continuous Integration (CI) testing that runs on every publishing workflow. This would automatically execute test suites (if present) and block publishing if any tests fail. Integrate with popular CI services like GitHub Actions.
Describe alternatives you've considered
Manual testing before publishing is possible but can be error-prone and time-consuming. Skipping tests risks unstable releases.
Additional context
Automated CI testing is a common best practice in open source and would help maintain the quality of published releases.