We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b046f7d commit 4939585Copy full SHA for 4939585
.github/workflows/ci.yaml
@@ -166,6 +166,11 @@ jobs:
166
- "8.3"
167
- "8.4"
168
169
+ include:
170
+ - os: ubuntu-latest
171
+ php-version: "8.3"
172
+ add-ext: ", pcntl"
173
+
174
steps:
175
- name: Configure Git to avoid issues with line endings
176
if: matrix.os == 'windows-latest'
@@ -178,7 +183,7 @@ jobs:
178
183
uses: shivammathur/setup-php@v2
179
184
with:
180
185
php-version: ${{ matrix.php-version }}
181
- extensions: ${{ env.PHP_EXTENSIONS }}
186
+ extensions: "${{ env.PHP_EXTENSIONS }}${{ matrix.add-ext }}"
182
187
ini-values: ${{ env.PHP_INI_VALUES }}
188
coverage: pcov
189
tools: none
0 commit comments