From ed57a23425904bbaa92a7ad1a4005eb3660ba783 Mon Sep 17 00:00:00 2001 From: Daniel Doyle Date: Wed, 27 Nov 2024 21:47:03 +0000 Subject: [PATCH] Omit 8.4 for now, more work required --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cf21313..553f9d1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: [ 7.4, 8.0, 8.1, 8.2, 8.3, 8.4 ] + php: [ 7.4, 8.0, 8.1, 8.2, 8.3 ] fail-fast: false steps: - name: Checkout @@ -43,9 +43,9 @@ jobs: run: composer run test - name: Install dependencies (Codeception v5) run: composer update codeception/codeception:^5.0 codeception/module-webdriver codeception/module-phpbrowser codeception/module-asserts -W - if: matrix.php == '8.0' || matrix.php == '8.1' || matrix.php == '8.2' || matrix.php == '8.3' || matrix.php == '8.4' + if: matrix.php == '8.0' || matrix.php == '8.1' || matrix.php == '8.2' || matrix.php == '8.3' - name: Run test suite (Codeception v5) env: PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} run: composer run test - if: matrix.php == '8.0' || matrix.php == '8.1' || matrix.php == '8.2' || matrix.php == '8.3' || matrix.php == '8.4' + if: matrix.php == '8.0' || matrix.php == '8.1' || matrix.php == '8.2' || matrix.php == '8.3'