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 186983e commit 32144c4Copy full SHA for 32144c4
.github/workflows/ci.yaml
@@ -115,6 +115,11 @@ jobs:
115
- "8.3"
116
- "8.4"
117
118
+ include:
119
+ - os: ubuntu-latest
120
+ php-version: "8.3"
121
+ add-ext: ", pcntl"
122
+
123
steps:
124
- name: Configure Git to avoid issues with line endings
125
if: matrix.os == 'windows-latest'
@@ -127,7 +132,7 @@ jobs:
127
132
uses: shivammathur/setup-php@v2
128
133
with:
129
134
php-version: ${{ matrix.php-version }}
130
- extensions: ${{ env.PHP_EXTENSIONS }}
135
+ extensions: "${{ env.PHP_EXTENSIONS }}${{ matrix.add-ext }}"
131
136
ini-values: ${{ env.PHP_INI_VALUES }}
137
tools: none
138
0 commit comments