Skip to content

[AT-696] Use PHP_VERSION instead of deprecated PHP_MATRIX #28

[AT-696] Use PHP_VERSION instead of deprecated PHP_MATRIX

[AT-696] Use PHP_VERSION instead of deprecated PHP_MATRIX #28

Workflow file for this run

name: PHP Quality Assurance
on:
pull_request:
types: [ assigned, opened, reopened, ready_for_review, synchronize ]
push:
branches:
- 'main'
paths:
- '**.php'
- '**/workflows/*php*'
jobs:
lint-php:
uses: inpsyde/reusable-workflows/.github/workflows/lint-php.yml@main
strategy:
matrix:
php: ["8.0", "8.1", "8.2"]
with:
PHP_VERSION: ${{ matrix.php }}
coding-standards-analysis-php:
uses: inpsyde/reusable-workflows/.github/workflows/coding-standards-php.yml@main
static-code-analysis-php:
uses: inpsyde/reusable-workflows/.github/workflows/static-analysis-php.yml@main
tests-unit-php:
uses: inpsyde/reusable-workflows/.github/workflows/tests-unit-php.yml@main
strategy:
matrix:
php: ["8.0", "8.1", "8.2"]
with:
PHP_VERSION: ${{ matrix.php }}
PHPUNIT_ARGS: '--no-coverage --testsuite=unit'