Skip to content

[MOOSE-130]: Misc Moose updates for WordPress 6.6 compatibility WIP #36

[MOOSE-130]: Misc Moose updates for WordPress 6.6 compatibility WIP

[MOOSE-130]: Misc Moose updates for WordPress 6.6 compatibility WIP #36

Workflow file for this run

name: 'Code Quality Checks'
on:
workflow_dispatch:
pull_request:
branches:
- main
- develop
push:
branches:
- main
- develop
jobs:
coding-standards:
name: 'Coding Standards'
uses: ./.github/workflows/phpcs.yml
secrets:
COMPOSER_AUTH_JSON: ${{ secrets.COMPOSER_AUTH_JSON }}
linting:
name: 'Linting'
uses: ./.github/workflows/linting.yml
phpstan:
name: 'Static Analysis'
needs: [coding-standards, linting]
uses: ./.github/workflows/static-analysis.yml
secrets:
COMPOSER_AUTH_JSON: ${{ secrets.COMPOSER_AUTH_JSON }}
slic:
name: 'PHP Tests'
needs: [coding-standards, phpstan, linting]
uses: ./.github/workflows/php-tests.yml
secrets:
COMPOSER_AUTH_JSON: ${{ secrets.COMPOSER_AUTH_JSON }}