Skip to content

Update Plugin Infrastructure to #106

Update Plugin Infrastructure to

Update Plugin Infrastructure to #106

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: Acceptance Tests
on:
push:
branches:
- 'develop'
- 'trunk'
paths:
- '.github/workflows/acceptance-tests.yml'
- 'tests/**'
- '**.php'
- 'codeception.dist.yml'
- 'composer.json'
- 'docker-compose.yml'
- 'package.json'
pull_request:
branches:
- '**'
paths:
- '.github/workflows/acceptance-tests.yml'
- 'tests/**'
- '**.php'
- 'codeception.dist.yml'
- 'composer.json'
- 'docker-compose.yml'
- 'package.json'
workflow_dispatch:
permissions:
contents: read
jobs:
test:
name: WP ${{ matrix.wp }} / PHP ${{ matrix.php }}
strategy:
# See the following for PHP compatibility of WordPress versions:
# https://make.wordpress.org/core/handbook/references/php-compatibility-and-wordpress-versions/
matrix:
wp:
# Three most recent versions of WordPress
- '6.6'
- '6.5'
- '6.4'
php:
# Most recent version of PHP supported by the above, plus 7.4
- '8.2'
- '7.4'
include:
# Latest WordPress on PHP 8.3
- wp: '6.6'
php: '8.3'
# Oldest supported WordPress
- wp: '5.8'
php: '7.4'
fail-fast: false
uses: johnbillion/plugin-infrastructure/.github/workflows/reusable-acceptance-tests.yml@

Check failure on line 57 in .github/workflows/acceptance-tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/acceptance-tests.yml

Invalid workflow file

invalid value workflow reference: no version specified
with:
wp: ${{ matrix.wp }}
php: ${{ matrix.php }}
node: false