File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -115,11 +115,11 @@ jobs:
115115
116116 - name : Install dependencies
117117 if : matrix.stability != 'prefer-lowest'
118- run : composer install --no-interaction --prefer-dist --optimize-autoloader ${{ matrix.os == 'windows-latest' && '--ignore-platform-req=ext-pcntl' || '' }}
118+ run : composer install --no-interaction --prefer-dist --optimize-autoloader ${{ matrix.os == 'windows-latest' && '--ignore-platform-req=ext-pcntl --ignore-platform-req=ext-posix ' || '' }}
119119
120120 - name : Install dependencies (prefer-lowest)
121121 if : matrix.stability == 'prefer-lowest'
122- run : composer update --no-interaction --prefer-dist --optimize-autoloader --prefer-lowest ${{ matrix.os == 'windows-latest' && '--ignore-platform-req=ext-pcntl' || '' }}
122+ run : composer update --no-interaction --prefer-dist --optimize-autoloader --prefer-lowest ${{ matrix.os == 'windows-latest' && '--ignore-platform-req=ext-pcntl --ignore-platform-req=ext-posix ' || '' }}
123123
124124 - name : Execute tests
125125 run : composer test
Original file line number Diff line number Diff line change 5252 "scripts" : {
5353 "lint" : " duster lint src" ,
5454 "fix" : " duster fix src" ,
55- "test" : " phpunit --do-not-fail-on-skipped -- no-coverage" ,
56- "test:unit" : " phpunit --do-not-fail-on-skipped -- no-coverage tests/Unit" ,
57- "test:integration" : " phpunit --do-not-fail-on-skipped -- no-coverage tests/Integration" ,
58- "test:coverage" : " XDEBUG_MODE=coverage phpunit --do-not-fail-on-skipped -- coverage-html=coverage --coverage-text --coverage-xml=coverage" ,
55+ "test" : " phpunit --no-coverage" ,
56+ "test:unit" : " phpunit --no-coverage tests/Unit" ,
57+ "test:integration" : " phpunit --no-coverage tests/Integration" ,
58+ "test:coverage" : " XDEBUG_MODE=coverage phpunit --coverage-html=coverage --coverage-text --coverage-xml=coverage" ,
5959 "analyse" : " phpstan analyse" ,
6060 "check" : [
6161 " @analyse" ,
You can’t perform that action at this time.
0 commit comments