Merged
Conversation
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 introduces a comprehensive overhaul of the project's continuous integration (CI) workflows and documentation. The main focus is on expanding and improving the CI pipeline to support functional testing across multiple database platforms and versions, while also updating documentation to reflect the project's current status, rules, and release history.
CI Workflow Enhancements:
Major CI pipeline refactor:
.github/workflows/ci.ymlworkflow that orchestrates linting, unit testing, and functional tests for SQLite, MySQL, MariaDB, PostgreSQL, and SQL Server, each running as separate jobs and supporting matrix builds for multiple database versions.test-sqlite3.yaml,test-mysql.yaml,test-mariadb.yaml,test-postgresql.yaml, andtest-sqlserver.yaml. Each is configured for multi-version testing, proper service setup, dependency caching, and environment variable management. [1] [2] [3] [4] [5]Refined existing workflows:
lint.ymlandtest.ymlto be triggerable viaworkflow_dispatchand callable by other workflows, streamlining their integration into the new CI pipeline. [1] [2]Documentation Updates:
AGENTS.md:CHANGELOG.md:Summary of Most Important Changes:
CI Pipeline Modernization
ci.yml) to orchestrate linting, unit, and functional tests across SQLite, MySQL, MariaDB, PostgreSQL, and SQL Server, each with multi-version matrix builds.lint.ymlandtest.ymlto support workflow composition and manual triggering, and enhanced test jobs to include coverage reporting and artifact upload. [1] [2] [3]Documentation Improvements
AGENTS.mdto focus on project rules, validation, and Doctrine/Datazen alignment guidance, removing outdated namespace parity tables.CHANGELOG.mdto reflect major releases, CI improvements, and project milestones in a more readable format.