From 140d1770ede7afcb633bf362c6fed499e5a97e90 Mon Sep 17 00:00:00 2001 From: Dovid Levine Date: Sun, 17 Sep 2023 16:36:40 +0300 Subject: [PATCH] ci: only run PHP 8.1 against WP 6.2+ (#381) --- .github/workflows/integration-testing.yml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/integration-testing.yml b/.github/workflows/integration-testing.yml index 673ad2c0..e8934cdf 100644 --- a/.github/workflows/integration-testing.yml +++ b/.github/workflows/integration-testing.yml @@ -23,21 +23,14 @@ jobs: strategy: matrix: - php: [ '8.1', '8.0', '7.4' ] - wordpress: [ '6.3', '6.2', '6.1', '6.0', '5.9' ] + php: [ '8.0', '7.4' ] + wordpress: [ '6.3', '6.2', '6.1', '6.0', '5.9', '5.8', '5.7' ] include: - php: '8.1' wordpress: '6.3' coverage: 1 - # Older versions of WordPress - - php: '8.0' - wordpress: '5.8' - - php: '8.0' - wordpress: '5.7' - - php: '7.4' - wordpress: '5.8' - - php: '7.4' - wordpress: '5.7' + - php: '8.1' + wordpress: '6.2' exclude: - php: '7.4' wordpress: '6.3'