Skip to content

Prevents querying for stripe billing subscriptions on every page load and changes how our Stripe Billing code is loaded. #29180

Prevents querying for stripe billing subscriptions on every page load and changes how our Stripe Billing code is loaded.

Prevents querying for stripe billing subscriptions on every page load and changes how our Stripe Billing code is loaded. #29180

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', '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