Fix fatal error in purchasing a subscription with PRB and ECE when the subscription's price or sign-up fee is a string #5525
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: PHP tests | |
on: | |
pull_request | |
jobs: | |
beta-compatibility: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
woocommerce: [ 'beta' ] | |
wordpress: [ 'latest' ] | |
php: [ '7.4', '8.0', '8.1' ] | |
name: Beta (PHP=${{ matrix.php }}, WP=${{ matrix.wordpress }}, WC=${{ matrix.woocommerce }}) | |
env: | |
PHP_VERSION: ${{ matrix.php }} | |
WP_VERSION: ${{ matrix.wordpress }} | |
WC_VERSION: ${{ matrix.woocommerce }} | |
steps: | |
- name: Testing with PHP=${{ matrix.php }}, WP=${{ matrix.wordpress }}, WC=${{ matrix.woocommerce }} | |
uses: actions/checkout@v2 | |
- name: Set up dependencies caching | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/composer/ | |
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }} | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: none | |
- name: If PHP >= 8.0, set up PHPUnit 9.5 for compatibility | |
if: ${{ matrix.php >= '8.0' }} | |
run: wget https://phar.phpunit.de/phpunit-9.5.13.phar && mv phpunit-9.5.13.phar phpunit.phar | |
- name: Run CI checks | |
run: bash bin/run-ci-tests.bash |