From 99ef126547ca83165107bcfe46fc5b2abab68b8b Mon Sep 17 00:00:00 2001 From: "Dylan T." Date: Wed, 27 Nov 2024 17:48:39 +0000 Subject: [PATCH] Exclude PM4 & 8.3 from test matrix --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9d6cc2e..4797d0a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,9 +18,12 @@ jobs: runs-on: ${{ matrix.image }} strategy: matrix: - php: ["8.0", "8.1", "8.2", "8.3"] + php: ["8.0", "8.1", "8.2"] pm-version-major: [4, 5] image: [ubuntu-20.04, ubuntu-22.04, ubuntu-latest] + exclude: + - pm-version-major: 4 + php: "8.3" #not supported steps: - uses: actions/checkout@v4