Skip to content

[MOOSE-161] Register training CPT #79

[MOOSE-161] Register training CPT

[MOOSE-161] Register training CPT #79

Workflow file for this run

name: 'Code Quality Checks'
on:
workflow_dispatch:
pull_request:
types:
- opened
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 }}
# Enable this job if you have PHPUnit tests
# slic:
# name: 'PHP Tests'
# needs: [coding-standards, phpstan, linting]
# uses: ./.github/workflows/php-tests.yml
# secrets:
# COMPOSER_AUTH_JSON: ${{ secrets.COMPOSER_AUTH_JSON }}