File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,11 @@ jobs:
116
116
- " 8.4"
117
117
- " 8.5"
118
118
119
+ include :
120
+ - os : ubuntu-latest
121
+ php-version : " 8.4"
122
+ add-ext : " , pcntl"
123
+
119
124
steps :
120
125
- name : Configure Git to avoid issues with line endings
121
126
if : matrix.os == 'windows-latest'
@@ -128,7 +133,7 @@ jobs:
128
133
uses : shivammathur/setup-php@v2
129
134
with :
130
135
php-version : ${{ matrix.php-version }}
131
- extensions : ${{ env.PHP_EXTENSIONS }}
136
+ extensions : " ${{ env.PHP_EXTENSIONS }}${{ matrix.add-ext }} "
132
137
ini-values : ${{ env.PHP_INI_VALUES }}
133
138
tools : none
134
139
@@ -163,6 +168,11 @@ jobs:
163
168
- " 8.4"
164
169
- " 8.5"
165
170
171
+ include :
172
+ - os : ubuntu-latest
173
+ php-version : " 8.4"
174
+ add-ext : " , pcntl"
175
+
166
176
steps :
167
177
- name : Configure Git to avoid issues with line endings
168
178
if : matrix.os == 'windows-latest'
@@ -186,7 +196,7 @@ jobs:
186
196
uses : shivammathur/setup-php@v2
187
197
with :
188
198
php-version : ${{ matrix.php-version }}
189
- extensions : ${{ env.PHP_EXTENSIONS }}
199
+ extensions : " ${{ env.PHP_EXTENSIONS }}${{ matrix.add-ext }} "
190
200
ini-values : ${{ env.PHP_INI_VALUES }}
191
201
tools : none
192
202
Original file line number Diff line number Diff line change 9
9
*/
10
10
namespace PHPUnit \Framework ;
11
11
12
- use function array_search ;
13
12
use function file_get_contents ;
14
13
use function file_put_contents ;
15
14
use function function_exists ;
16
15
use function get_included_files ;
17
16
use function hrtime ;
17
+ use function in_array ;
18
18
use function ini_get ;
19
19
use function pcntl_fork ;
20
20
use function pcntl_waitpid ;
You can’t perform that action at this time.
0 commit comments