Skip to content

Allow Afterpay to process payments when the state field is optional (UK and NZ customers) #25272

Allow Afterpay to process payments when the state field is optional (UK and NZ customers)

Allow Afterpay to process payments when the state field is optional (UK and NZ customers) #25272

Workflow file for this run

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' ]
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.lock') }}
# setup PHP, but without debug extensions for reasonable performance
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer
coverage: xdebug2
# run CI checks
- run: bash bin/run-ci-tests-check-coverage.bash