From 38ac41d98d272ab527cdded7900442105adfb2b5 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 20 Nov 2023 03:47:41 +0100 Subject: [PATCH] GH Actions/test: PHP 8.3 has been released The tests were already being run against PHP 8.3 and not _allowed to fail_. However, for this workflow, code coverage should run against the highest PHP version. This commit makes it so. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3046ee7..feef325 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,7 +41,7 @@ jobs: strategy: matrix: - php_version: ['5.4', '5.5', '5.6', '7.0', '7.2', '7.3', '7.4', '8.0', '8.1', '8.3'] + php_version: ['5.4', '5.5', '5.6', '7.0', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2'] coverage: [false] # Run code coverage only on high/medium/low PHP. @@ -50,7 +50,7 @@ jobs: coverage: true - php_version: 7.1 coverage: true - - php_version: 8.2 + - php_version: 8.3 coverage: true name: "Lint and test: PHP ${{ matrix.php_version }}"