Skip to content

Commit

Permalink
GH Actions/test workflow: further improve base ini values
Browse files Browse the repository at this point in the history
Follow up on 18

Depending on the PHP version, `E_ALL` may not actual include all errors, so let's use `-1` instead which always will.
Also, let's enable `zend.assertions` in the ini settings as those may be used in tests.
  • Loading branch information
jrfnl authored and grogy committed Dec 7, 2021
1 parent b36f29a commit faac49b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
ini-values: error_reporting=E_ALL, display_errors=On
ini-values: zend.assertions=1, error_reporting=-1, display_errors=On
coverage: none
tools: cs2pr

Expand Down

0 comments on commit faac49b

Please sign in to comment.