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