From 4eca7cfbf1ea15cbb3ad669d16392fc2a50e73f8 Mon Sep 17 00:00:00 2001 From: Yann 'Ze' Richard Date: Fri, 5 Jul 2024 16:46:43 +0200 Subject: [PATCH] add(tests): PHP 8.2 and 8.3 to the test matrix add(tests) PHP 8.2 and 8.3 to the test matrix --- .github/workflows/unit-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index c53f1d9..494d688 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -12,12 +12,12 @@ jobs: strategy: matrix: os: ['ubuntu-latest'] - php: [7.1, 7.2, 7.3, 7.4, 8.0, 8.1] + php: [7.1, 7.2, 7.3, 7.4, 8.0, 8.1, 8.2, 8.3] experimental: [ false ] fail-fast: false env: - coverage: ${{ (matrix.os == 'ubuntu-latest' && matrix.php == '8.1') && 'xdebug' || '0' }} + coverage: ${{ (matrix.os == 'ubuntu-latest' && matrix.php == '8.2') && 'xdebug' || '0' }} github-token: ${{ secrets.GITHUB_TOKEN }} COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}