We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbb69b9 commit f26b2ceCopy full SHA for f26b2ce
1 file changed
.github/workflows/reusable-phpunit-test.yml
@@ -43,6 +43,10 @@ on:
43
description: Additional PHP extensions that are needed to be enabled
44
type: string
45
required: false
46
+ extra-ini-options:
47
+ description: Additional PHP configuration directives that should be appended to the php.ini
48
+ type: string
49
+ required: false
50
extra-composer-options:
51
description: Additional Composer options that should be appended to the `composer update` call
52
@@ -163,6 +167,7 @@ jobs:
163
167
php-version: ${{ inputs.php-version }}
164
168
tools: composer
165
169
extensions: gd, ${{ inputs.extra-extensions }}
170
+ ini-values: ${{ inputs.extra-ini-options }}
166
171
coverage: ${{ env.COVERAGE_DRIVER }}
172
env:
173
COVERAGE_DRIVER: ${{ inputs.enable-coverage && 'xdebug' || 'none' }}
0 commit comments