From a2fcfa79541a19cb06edc0f38e81d3a5ab025b86 Mon Sep 17 00:00:00 2001 From: Christian Leucht <3417446+Chrico@users.noreply.github.com> Date: Thu, 14 Dec 2023 14:22:13 +0100 Subject: [PATCH] Update php-qa.yml Signed-off-by: Christian Leucht <3417446+Chrico@users.noreply.github.com> --- .github/workflows/php-qa.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/php-qa.yml b/.github/workflows/php-qa.yml index aa0bbd0..d3a61f1 100644 --- a/.github/workflows/php-qa.yml +++ b/.github/workflows/php-qa.yml @@ -5,12 +5,15 @@ on: [ push ] jobs: lint-php: uses: inpsyde/reusable-workflows/.github/workflows/lint-php.yml@main + strategy: + matrix: + php: ["7.2", "7.3", "7.4", "8.0", "8.1"] with: - PHP_MATRIX: >- - ["7.2", "7.3", "7.4", "8.0", "8.1"] + PHP_VERSION: ${{ matrix.php }} tests-unit-php: uses: inpsyde/reusable-workflows/.github/workflows/tests-unit-php.yml@main - needs: [ lint-php ] + strategy: + matrix: + php: ["7.2", "7.3", "7.4", "8.0", "8.1"] with: - PHP_MATRIX: >- - ["7.2", "7.3", "7.4", "8.0", "8.1"] + PHP_VERSION: ${{ matrix.php }}