Update PHPStan level to 1 #3092
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: Unit Testing | |
on: | |
push: | |
branches: | |
- trunk | |
- 'release/**' | |
# 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' | |
- 'tests/multisite.xml' | |
- 'composer.json' | |
- 'composer.lock' | |
pull_request: | |
# 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' | |
- 'tests/multisite.xml' | |
- 'composer.json' | |
- 'composer.lock' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
workflow_dispatch: | |
jobs: | |
php-test: | |
name: "PHP ${{ matrix.php }} / WP ${{ matrix.wp }}" | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ['8.2', '8.1', '8.0', '7.4', '7.3', '7.2'] | |
wp: [ 'latest' ] | |
include: | |
- php: '7.4' | |
wp: '6.4' | |
- php: '8.3' | |
wp: 'trunk' | |
env: | |
WP_ENV_PHP_VERSION: ${{ matrix.php }} | |
WP_ENV_CORE: ${{ matrix.wp == 'trunk' && 'WordPress/WordPress' || format( 'https://wordpress.org/wordpress-{0}.zip', matrix.wp ) }} | |
steps: | |
- uses: styfle/cancel-workflow-action@0.12.1 | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js (.nvmrc) | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: npm | |
- name: npm install | |
run: npm ci | |
- name: Remove standalone plugins from wp-env config | |
run: jq '.plugins = [.plugins[0]]' .wp-env.json > .wp-env.override.json | |
- name: Install WordPress | |
run: npm run wp-env start | |
- name: Composer Install | |
run: npm run wp-env run tests-cli -- --env-cwd="wp-content/plugins/$(basename $(pwd))" composer install --no-interaction --no-progress | |
- name: Running single site unit tests | |
run: npm run test-php | |
- name: Running multisite unit tests | |
run: npm run test-php-multisite |