Skip to content

Commit

Permalink
Issue #520: Restricted Qodana to supported PHP versions
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Karajos <[email protected]>
  • Loading branch information
alexmerlin authored Dec 2, 2024
1 parent 7ad44b2 commit 963bc6e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/qodana_code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
contents: write
pull-requests: write
checks: write
strategy:
matrix:
php-versions: [ '8.2', '8.3' ]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -22,7 +25,7 @@ jobs:
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
php-version: ${{ matrix.php-versions }}
coverage: pcov
ini-values: assert.exception=1, zend.assertions=1, error_reporting=-1, log_errors_max_len=0, display_errors=On
tools: composer:v2, cs2pr
Expand Down

0 comments on commit 963bc6e

Please sign in to comment.