From de781ce3d867dbc990c02dba244ba2ad529d3713 Mon Sep 17 00:00:00 2001 From: Gary Jones Date: Sun, 23 Jul 2023 00:16:00 +0100 Subject: [PATCH] CI: Adjust WP and PHP versions in matrix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Can’t expand to newer PHP versions until PHPUnit version has been addressed. --- .github/workflows/integrate.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integrate.yml b/.github/workflows/integrate.yml index caa7db10..73e595fe 100644 --- a/.github/workflows/integrate.yml +++ b/.github/workflows/integrate.yml @@ -13,8 +13,8 @@ jobs: strategy: matrix: - php: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0' ] - wordpress: [ '5.5', '5.6', '5.7', '5.8', '5.9', '6.0', '6.1' ] + php: [ '7.1', '7.2', '7.3', '7.4', '8.0' ] + wordpress: [ '5.7', '5.8', '5.9', '6.0', '6.1', '6.2' ] allowed_failure: [ false ] include: - php: "8.0" @@ -23,9 +23,6 @@ jobs: extensions: pcov ini-values: pcov.directory=., "pcov.exclude=\"~(vendor|tests)~\"" coverage: pcov - exclude: - - php: '8.0' - wordpress: '5.5' fail-fast: false steps: