From fd06ac3e620f27779ac9f113d3f24f25e4098e94 Mon Sep 17 00:00:00 2001 From: Damian Taggart <4309872+attackant@users.noreply.github.com> Date: Tue, 31 Oct 2023 08:58:38 -0600 Subject: [PATCH] Add multisite testing to GitHub Actions An addition to the test matrix in the GitHub Actions configuration for PHPUnit was made to include multisite setups. This change ensures that the codebase is compatible with WordPress multisite environments. --- .github/workflows/phpunit.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 7abb72b5..097c7b9a 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -10,6 +10,7 @@ jobs: php-tests: strategy: matrix: + multisite: [0, 1] php: ['8.2', '8.1', '8.0', '7.4'] wordpress: ["latest"] if: github.event.pull_request.draft == false