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 f353d0b commit 186983eCopy full SHA for 186983e
.github/workflows/ci.yaml
@@ -161,6 +161,11 @@ jobs:
161
- "8.3"
162
- "8.4"
163
164
+ include:
165
+ - os: ubuntu-latest
166
+ php-version: "8.3"
167
+ add-ext: ", pcntl"
168
+
169
steps:
170
- name: Configure Git to avoid issues with line endings
171
if: matrix.os == 'windows-latest'
@@ -173,7 +178,7 @@ jobs:
173
178
uses: shivammathur/setup-php@v2
174
179
with:
175
180
php-version: ${{ matrix.php-version }}
176
- extensions: ${{ env.PHP_EXTENSIONS }}
181
+ extensions: "${{ env.PHP_EXTENSIONS }}${{ matrix.add-ext }}"
177
182
ini-values: ${{ env.PHP_INI_VALUES }}
183
coverage: pcov
184
tools: none
0 commit comments