Sync CI pipeline with moodlehq/moodle-plugin-ci#22
Merged
ignaciogros merged 1 commit intomainfrom Mar 31, 2025
Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR syncs the CI pipeline configuration with the latest version from moodlehq/moodle-plugin-ci to update PHP/PostgreSQL versions and enhance Behat testing.
- Upgrade PostgreSQL from version 13 to 14.
- Update the PHP testing matrix and reduce the supported Moodle branches.
- Enhance the Behat command with an additional flag.
Comments suppressed due to low confidence (3)
.github/workflows/moodle-ci.yml:33
- Verify that dropping PHP 8.3 support was intentional and that all tests are compatible with the revised PHP versions.
php: ['7.4', '8.0', '8.1']
.github/workflows/moodle-ci.yml:34
- Confirm that the removal of 'MOODLE_404_STABLE' is deliberate, and update relevant documentation if needed.
moodle-branch: ['MOODLE_401_STABLE']
.github/workflows/moodle-ci.yml:109
- Ensure that adding the '--scss-deprecations' flag aligns with the expected behavior in your Behat tests and does not introduce side effects.
run: moodle-plugin-ci behat --profile chrome --scss-deprecations
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 PR updates
.github/workflows/moodle-ci.ymlto match the latest version from moodlehq/moodle-plugin-ci.Includes updated PHP/PostgreSQL versions and improved Behat config.