Skip to content

chore: run phpcs on php 8.5 #839

chore: run phpcs on php 8.5

chore: run phpcs on php 8.5 #839

Workflow file for this run

name: Testing Suite

Check failure on line 1 in .github/workflows/phpunit.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/phpunit.yml

Invalid workflow file

(Line: 38, Col: 5): Unexpected value 'uses', (Line: 39, Col: 5): Unexpected value 'with', (Line: 19, Col: 5): Required property is missing: runs-on
on:
push:
branches:
- develop
- release/*
pull_request:
types: [ opened, synchronize, reopened, ready_for_review ]
branches:
- develop
- release/*
permissions:
contents: read
jobs:
php-tests:
continue-on-error: ${{ matrix.experimental == true }}
strategy:
matrix:
multisite: [true, false]
php: ['8.5', '8.4', '8.3', '8.2']
wordpress: ["latest"]
include:
- php: '8.5'
wordpress: 'latest'
multisite: true
experimental: true
- php: '8.5'
wordpress: 'latest'
multisite: false
experimental: true
- php: '8.2'
wordpress: '6.3'
multisite: false
if: github.event.pull_request.draft == false
uses: alleyinteractive/.github/.github/workflows/php-tests.yml@main
with:
command: "phpunit"
multisite: ${{ matrix.multisite }}
php: ${{ matrix.php }}
wordpress: ${{ matrix.wordpress }}