From f3c15627a0bd685c4095cd73e2d9cdd9fd64e0f2 Mon Sep 17 00:00:00 2001 From: Amin Date: Fri, 26 Apr 2024 20:49:53 +0200 Subject: [PATCH] chore: update php version in php qa workflow --- .github/workflows/quality-assurance-php.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/quality-assurance-php.yml b/.github/workflows/quality-assurance-php.yml index 256b6c0..a24b909 100644 --- a/.github/workflows/quality-assurance-php.yml +++ b/.github/workflows/quality-assurance-php.yml @@ -24,12 +24,16 @@ jobs: PHP_VERSION: "8.0" lint-php: uses: inpsyde/reusable-workflows/.github/workflows/lint-php.yml@main + strategy: + matrix: + php-versions: [ "8.0", "8.1", "8.2" ] with: - PHP_MATRIX: >- - ["8.0", "8.1", "8.2"] + PHP_VERSION: ${{ matrix.php-versions }} tests-unit-php: needs: [ coding-standards-analysis-php, static-code-analysis-php ] uses: inpsyde/reusable-workflows/.github/workflows/tests-unit-php.yml@main + strategy: + matrix: + php-versions: [ "8.0", "8.1", "8.2" ] with: - PHP_MATRIX: >- - ["8.0", "8.1", "8.2"] + PHP_VERSION: ${{ matrix.php-versions }}