Skip to content

Commit

Permalink
[AT-696] Use PHP_VERSION instead of deprecated PHP_MATRIX
Browse files Browse the repository at this point in the history
  • Loading branch information
daniloalvess authored Mar 6, 2024
1 parent 1fa6d4c commit f1c67d6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/php-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ on:
jobs:
lint-php:
uses: inpsyde/reusable-workflows/.github/workflows/lint-php.yml@main
strategy:
matrix:
php: ["8.0", "8.1", "8.2"]
with:
PHP_MATRIX: '["8.0", "8.1", "8.2"]'
PHP_VERSION: ${{ matrix.php }}

coding-standards-analysis-php:
uses: inpsyde/reusable-workflows/.github/workflows/coding-standards-php.yml@main
Expand All @@ -25,6 +28,9 @@ jobs:

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_MATRIX: '["8.0", "8.1", "8.2"]'
PHP_VERSION: ${{ matrix.php }}
PHPUNIT_ARGS: '--no-coverage --testsuite=unit'

0 comments on commit f1c67d6

Please sign in to comment.