Issue-95: force_two_factor_authentication feature causing 502 errors on VIP #234
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
pull_request: | |
jobs: | |
phpunit: | |
strategy: | |
fail-fast: true | |
matrix: | |
php: [ 8.1, 8.2, 8.3 ] | |
wp_version: [ "latest" ] | |
multisite: [ false, true ] | |
name: WordPress ${{ matrix.wp_version }} @ PHP ${{ matrix.php }} (WP_MULTISITE=${{ matrix.multisite }}) | |
uses: alleyinteractive/.github/.github/workflows/php-tests.yml@main | |
with: | |
command: "phpunit" | |
php: ${{ matrix.php }} | |
wordpress: ${{ matrix.wp_version }} | |
multisite: ${{ matrix.multisite }} |