From c369f68e8622945101038cdd6e4264fe1b70e694 Mon Sep 17 00:00:00 2001 From: Chris Wiegman Date: Wed, 3 Apr 2024 14:03:07 -0500 Subject: [PATCH] chore: add WordPress 6.4 and 6.5 to testing matrix --- .github/workflows/test-plugin.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-plugin.yml b/.github/workflows/test-plugin.yml index acf89d87..5a091c52 100644 --- a/.github/workflows/test-plugin.yml +++ b/.github/workflows/test-plugin.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: php: [ '8.2', '7.4' ] - wordpress: [ '6.3', '6.2', '6.1' ] + wordpress: [ '6.5', '6.4', '6.3', '6.2', '6.1' ] exclude: - php: 8.2 wordpress: 6.1 @@ -20,6 +20,10 @@ jobs: wordpress: 6.2 - php: 7.4 wordpress: 6.3 + - php: 7.4 + wordpress: 6.4 + - php: 7.4 + wordpress: 6.5 fail-fast: false name: WordPress ${{ matrix.wordpress }}, PHP ${{ matrix.php }} steps: