Skip to content

[FAU-407] Initial preparation #1

[FAU-407] Initial preparation

[FAU-407] Initial preparation #1

name: Quality assurance PHP
on:
pull_request:
branches:
- main
paths:
- '**.php'
- 'composer.*'
- 'phpcs.*'
- 'phpunit.*'
- 'psalm.*'
jobs:
coding-standards-analysis-php:
uses: inpsyde/reusable-workflows/.github/workflows/coding-standards-php.yml@main
secrets:
COMPOSER_AUTH_JSON: ${{ secrets.PACKAGIST_AUTH_JSON }}
with:
PHP_VERSION: "8.0"
static-code-analysis-php:
uses: inpsyde/reusable-workflows/.github/workflows/static-analysis-php.yml@main
secrets:
COMPOSER_AUTH_JSON: ${{ secrets.PACKAGIST_AUTH_JSON }}
with:
PHP_VERSION: "8.0"
lint-php:
uses: inpsyde/reusable-workflows/.github/workflows/lint-php.yml@main
with:
PHP_MATRIX: >-

Check failure on line 28 in .github/workflows/quality-assurance-php.yml

View workflow run for this annotation

GitHub Actions / Quality assurance PHP

Invalid workflow file

The workflow is not valid. .github/workflows/quality-assurance-php.yml (Line: 28, Col: 19): Invalid input, PHP_MATRIX is not defined in the referenced workflow.
["8.0", "8.1", "8.2"]
tests-unit-php:
needs: [ coding-standards-analysis-php, static-code-analysis-php ]
uses: inpsyde/reusable-workflows/.github/workflows/tests-unit-php.yml@main
with:
PHP_MATRIX: >-
["8.0", "8.1", "8.2"]