From 98b2317a86bd056b8676681f893ae8b96f733631 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Arenaza?= Date: Wed, 31 Jan 2024 17:09:49 +0100 Subject: [PATCH] Exclude master + PHP 8.0 from the CI unit test matrix master, as of today, no longer supports PHP 8.0 and requires 8.1 minimum. --- .github/workflows/moodle-plugin-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/moodle-plugin-ci.yml b/.github/workflows/moodle-plugin-ci.yml index 32bf035..9885490 100644 --- a/.github/workflows/moodle-plugin-ci.yml +++ b/.github/workflows/moodle-plugin-ci.yml @@ -75,6 +75,9 @@ jobs: # It seems Moodle 4.0 doesn't fully support PHP 8.1, so exclude this combination. - moodle-branch: 'MOODLE_400_STABLE' php: '8.1' + # master no longer support 8.0, so exclude this combination. + - moodle-branch: 'master' + php: '8.0' steps: - name: Checkout