Test with johnbillion/plugin-infrastructure@actions-sast #80
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow | |
name: Integration Tests | |
on: | |
push: | |
branches: | |
- 'develop' | |
- 'trunk' | |
- 'master' | |
pull_request: | |
branches: | |
- '**' | |
workflow_dispatch: | |
jobs: | |
test: | |
name: WP ${{ matrix.wp }} / PHP ${{ matrix.php }} | |
uses: johnbillion/plugin-infrastructure/.github/workflows/reusable-integration-tests.yml@5034892887702562022d3c8651d065e354392f90 | |
strategy: | |
matrix: | |
wp: | |
# Latest 3 major versions of WordPress | |
- '6.6-RC2' | |
- '6.5' | |
- '6.4' | |
php: | |
# Newest and oldest supported versions of PHP | |
- '8.3' | |
- '7.4' | |
include: | |
# Oldest supported version of WordPress | |
- php: '7.4' | |
wp: '5.7' | |
fail-fast: false | |
with: | |
wp: ${{ matrix.wp }} | |
php: ${{ matrix.php }} | |
node: false |