Skip to content

Commit

Permalink
GH Actions: ensure zend assertions is enabled
Browse files Browse the repository at this point in the history
Similar to the change made in commit antecedent@2657911 , `zend.assertions` is set to `-1` by default, so needs to be turned on by setting it to `1` for the tests to work.

Ref: shivammathur/setup-php#450
  • Loading branch information
jrfnl committed Aug 15, 2021
1 parent da5a950 commit bc202de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring
ini-values: error_reporting=-1, display_errors=On, log_errors_max_len=0
ini-values: zend.assertions=1, error_reporting=-1, display_errors=On, log_errors_max_len=0
coverage: none
tools: none

Expand Down

0 comments on commit bc202de

Please sign in to comment.