[WPEX-3957] Use URLSearchParams for query string generation #611
Workflow file for this run
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.7'] | |
| 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 }}' | |