From 335a42f9fcb5eef2eb3396aa795aed46a9d953be Mon Sep 17 00:00:00 2001 From: Morne Alberts Date: Mon, 24 Feb 2025 16:49:07 +0200 Subject: [PATCH] Update CI --- .github/workflows/ci.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55a179e..c829331 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,16 +7,26 @@ on: jobs: test: name: "PHPUnit: MW ${{ matrix.mw }}, PHP ${{ matrix.php }}" + continue-on-error: ${{ matrix.experimental }} strategy: matrix: include: - mw: 'REL1_39' php: '8.1' + experimental: false - mw: 'REL1_41' php: '8.2' + experimental: false + - mw: 'REL1_42' + php: '8.3' + experimental: false + - mw: 'REL1_43' + php: '8.3' + experimental: false - mw: 'master' - php: '8.2' + php: '8.4' + experimental: true runs-on: ubuntu-latest