Changeset 60628 for trunk/.github/workflows/phpunit-tests.yml
- Timestamp:
- 08/12/2025 09:17:18 AM (4 months ago)
- File:
-
- 1 edited
-
trunk/.github/workflows/phpunit-tests.yml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/phpunit-tests.yml
r60625 r60628 225 225 226 226 # 227 # Runs specific individual test groups. 227 # Runs the HTML API test group. 228 # 229 # This test group runs separately due to the large number of tests that are skipped in this group while the 230 # HTML API is being developed. The skipped tests would otherwise cloud the results of all other test groups. 228 231 # 229 232 # These tests are run against the most recent LTS version of MySQL. 230 233 # 231 specific-test-groups:232 name: ${{ matrix. phpunit-test-groups}}234 html-api-test-groups: 235 name: ${{ matrix.label }} 233 236 uses: ./.github/workflows/reusable-phpunit-tests-v3.yml 234 237 permissions: … … 243 246 db-version: [ '8.4' ] 244 247 phpunit-test-groups: [ 'html-api-html5lib-tests' ] 248 # A matrix value is needed in the 'name' directive for proper grouping in the GitHub UI. 249 label: [ 'HTML API' ] 245 250 with: 246 251 php: ${{ matrix.php }} … … 313 318 actions: read 314 319 contents: read 315 needs: [ test-with-mysql, test-with-mariadb, test-innovation-releases, specific-test-groups, limited-matrix-for-forks ]320 needs: [ test-with-mysql, test-with-mariadb, test-innovation-releases, html-api-test-groups, limited-matrix-for-forks ] 316 321 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' && always() }} 317 322 with:
Note: See TracChangeset
for help on using the changeset viewer.