Update E2E and PHP tests to test against WP 6.8 #610
This file contains hidden or 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: Test / PHP | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| # PHP Unit testing | |
| # Unit testing should be run across WP current, previous, and major before previous. | |
| php_unit_versions_matrix: | |
| strategy: | |
| matrix: | |
| php: ['7.4','8.3'] | |
| wp: ['6.8'] | |
| name: PHP Unit ${{ matrix.php }} | WP Version ${{ matrix.wp }} | |
| uses: ./.github/workflows/test-php-unit.yml | |
| with: | |
| phpVersion: ${{ matrix.php }} | |
| wpVersion: 'WordPress/WordPress#${{ matrix.wp }}' | |