Skip to content

Commit 569f381

Browse files
authored
Merge pull request #361 from dotkernel/issue-360
Issue #360: Restricted `Qodana` to supported PHP versions
2 parents 6f5dae0 + 685517a commit 569f381

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/qodana_code_quality.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
contents: write
1515
pull-requests: write
1616
checks: write
17+
strategy:
18+
matrix:
19+
php-versions: [ '8.2', '8.3' ]
1720
steps:
1821
- uses: actions/checkout@v4
1922
with:
@@ -22,7 +25,7 @@ jobs:
2225
- name: Install PHP
2326
uses: shivammathur/setup-php@v2
2427
with:
25-
php-version: "${{ matrix.php }}"
28+
php-version: ${{ matrix.php-versions }}
2629
coverage: pcov
2730
ini-values: assert.exception=1, zend.assertions=1, error_reporting=-1, log_errors_max_len=0, display_errors=On
2831
tools: composer:v2, cs2pr

0 commit comments

Comments
 (0)