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 committed Mar 1, 2024
1 parent 46597f3 commit be839b1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/php-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,12 @@ concurrency:
jobs:
lint-php:
uses: inpsyde/reusable-workflows/.github/workflows/lint-php.yml@main
strategy:
matrix:
php: ["8.0", "8.1", "8.2"]
if: ${{ (github.event_name != 'workflow_dispatch') || ((github.event.inputs.jobs == 'Run all') || (github.event.inputs.jobs == 'Run lint only')) }}
with:
PHP_MATRIX: '["8.0", "8.1", "8.2"]'
PHP_VERSION: ${{ matrix.php }}

coding-standards-analysis-php:
if: ${{ (github.event_name != 'workflow_dispatch') || ((github.event.inputs.jobs != 'Run lint only') && (github.event.inputs.jobs != 'Run Psalm only')) }}
Expand Down

0 comments on commit be839b1

Please sign in to comment.