Skip to content

Commit

Permalink
Merge pull request #13 from dotkernel/issue-12
Browse files Browse the repository at this point in the history
Issue #12: Restricted `Qodana` to supported PHP versions
  • Loading branch information
arhimede authored Dec 2, 2024
2 parents d24d01f + b88c56a commit 35f83cb
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 35f83cb

Please sign in to comment.