From 7a583c70bdc6c4073689f5f085366031f488e59e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 2 Sep 2023 12:19:32 +0200 Subject: [PATCH] Enhancement: Allow tests to fail on PHP 8.3 --- .github/workflows/tests.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 6c5f5796cc..edfaddf17f 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -15,15 +15,21 @@ jobs: strategy: matrix: + experimental: + - false php-version: - "7.4" - "8.0" - "8.1" - "8.2" - - "8.3" + include: + - experimental: true + php-version: "8.3" runs-on: "ubuntu-latest" + continue-on-error: ${{ matrix.experimental }} + steps: - name: "Checkout code" uses: "actions/checkout@v3"