Skip to content

Commit

Permalink
chore: update php version in php qa workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
amiut committed Apr 26, 2024
1 parent d20e118 commit f3c1562
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/quality-assurance-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit f3c1562

Please sign in to comment.