Skip to content

Merge pull request #105 from moderntribe/fix/primary-term-trait-errors #450

Merge pull request #105 from moderntribe/fix/primary-term-trait-errors

Merge pull request #105 from moderntribe/fix/primary-term-trait-errors #450

Workflow file for this run

name: 'Workflows'
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_ENV: ${{ secrets.COMPOSER_ENV }}
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_ENV: ${{ secrets.COMPOSER_ENV }}
COMPOSER_AUTH_JSON: ${{ secrets.COMPOSER_AUTH_JSON }}
slic:
name: 'PHP Tests'
needs: [coding-standards, phpstan, linting]
uses: ./.github/workflows/php-tests.yml
secrets:
COMPOSER_ENV: ${{ secrets.COMPOSER_ENV }}
COMPOSER_AUTH_JSON: ${{ secrets.COMPOSER_AUTH_JSON }}