Update tests - #74
Merged
Merged
Conversation
Travis CI has been unused for this project for years and the "ORCA CI" workflow was really just a Travis translation, carrying an obsolete PHP 7.3/8.0 and Symfony 4.4/5.3 matrix. Replace both with a single .github/workflows/tests.yml: - Triggers on push and pull_request. - Matrix over PHP 7.4 (the composer.json floor), 8.4 (current) and 8.5 (next, non-blocking via continue-on-error while tooling catches up). - Validates composer.json, installs dependencies and runs the native PHPUnit suite directly rather than going through make/ORCA. - Coding standards (php-cs-fixer, phpmd) run once in a separate job on the current PHP version. Also swap the Travis badge in README.md for the Actions badge and ignore the modern .php-cs-fixer.cache filename.
…P slot The badge now reports the default branch explicitly rather than whichever branch ran most recently. The non-blocking PHP 8.5 job is a permanent slot for the next PHP release, not a temporary hedge, so keep continue-on-error in place and promote the version through the matrix as releases land.
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.
Motivation
Add simple test coverage now that ORCA and travis are gone