Fix test issues. #3
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 Unit Testing | |
on: | |
push: | |
branches: | |
- main | |
# Only run if PHP-related files changed. | |
paths: | |
- '.github/workflows/php-test.yml' | |
- '**.php' | |
- '.wp-env.json' | |
- '**/package.json' | |
- 'package-lock.json' | |
- 'phpunit.xml.dist' | |
- 'composer.json' | |
- 'composer.lock' | |
pull_request: | |
branches: | |
- main | |
- 'feature/**' | |
# Only run if PHP-related files changed. | |
paths: | |
- '.github/workflows/php-test.yml' | |
- '**.php' | |
- '.wp-env.json' | |
- '**/package.json' | |
- 'package-lock.json' | |
- 'phpunit.xml.dist' | |
- 'composer.json' | |
- 'composer.lock' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
php-test: | |
name: PHP ${{ matrix.php }} - WP ${{ matrix.wordpress }}${{ matrix.experimental && ' (experimental)' || '' }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
strategy: | |
fail-fast: true | |
matrix: | |
php: | |
- '7.0' | |
- '7.4' | |
- '8.0' | |
- '8.1' | |
- '8.2' | |
wordpress: [ 'latest' ] | |
experimental: [false] | |
include: | |
- php: '5.3' | |
wordpress: '5.0' | |
- php: '5.6' | |
wordpress: '5.2' | |
- php: '8.2' | |
wordpress: 'trunk' | |
experimental: true | |
env: | |
WP_ENV_PHP_VERSION: ${{ matrix.php }} | |
WP_ENV_CORE: ${{ matrix.wordpress == 'trunk' && 'WordPress/WordPress' || format( 'https://wordpress.org/wordpress-{0}.zip', matrix.wordpress ) }} | |
continue-on-error: ${{ matrix.experimental == true }} | |
steps: | |
#- uses: styfle/cancel-workflow-action@0.11.0 | |
- uses: actions/checkout@v3 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
- name: Setup Node.js (.nvmrc) | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: npm | |
- name: npm install | |
run: npm ci | |
- name: Install WordPress | |
run: npm run wp-env start | |
- name: Running PHPUnit tests | |
run: npm run test-php | |
- name: Running PHPUnit tests for multisite | |
run: npm run test-php-multisite |