Add unit tests for disputed order notices of WP Admin #26781
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: Code coverage | |
on: | |
pull_request | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
woocommerce-coverage: | |
name: Code coverage | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 10 | |
matrix: | |
woocommerce: [ 'latest' ] | |
wordpress: [ 'latest' ] | |
php: [ '7.4', '8.1' ] | |
directory: [ 'includes', 'src' ] | |
env: | |
WP_VERSION: ${{ matrix.wordpress }} | |
WC_VERSION: ${{ matrix.woocommerce }} | |
COVERAGE_DIR: ${{ matrix.directory }} | |
steps: | |
# clone the repository | |
- uses: actions/checkout@v4 | |
# enable dependencies caching | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.cache/composer/ | |
key: ${{ runner.os }}-composer-${{ hashFiles('composer.json') }}-${{ hashFiles('composer.lock') }} | |
# setup PHP, but without debug extensions for reasonable performance | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer | |
coverage: xdebug | |
# run CI checks | |
- run: bash bin/run-ci-tests-check-coverage.bash |