2727 coverage : none
2828 tools : none
2929
30- - name : Run friendsofphp/php-cs-fixer
30+ - name : Run PHP-CS-Fixer
3131 run : ./tools/php-cs-fixer fix --dry-run --show-progress=dots --using-cache=no --verbose
3232
3333 type-checker :
@@ -71,21 +71,25 @@ jobs:
7171
7272 php-version :
7373 - " 8.1"
74+ - " 8.2"
75+ - " 8.3"
7476
7577 coverage-driver :
7678 - " pcov"
7779 - " xdebug3"
7880
79- dependencies :
80- - lowest
81- - highest
82-
8381 exclude :
8482 - php-version : " 8.1"
8583 coverage-driver : " xdebug"
8684
85+ - php-version : " 8.2"
86+ coverage-driver : " xdebug"
87+
88+ - php-version : " 8.3"
89+ coverage-driver : " xdebug"
90+
8791 steps :
88- - name : Configure git to avoid issues with line endings
92+ - name : Configure Git to avoid issues with line endings
8993 if : matrix.os == 'windows-latest'
9094 run : git config --global core.autocrlf false
9195
@@ -101,15 +105,10 @@ jobs:
101105 ini-values : ${{ env.PHP_INI_VALUES }}
102106 tools : none
103107
104- - name : Install lowest dependencies with composer
105- if : matrix.dependencies == 'lowest'
106- run : php ./tools/composer update --no-ansi --no-interaction --no-progress --prefer-lowest
107-
108- - name : Install highest dependencies with composer
109- if : matrix.dependencies == 'highest'
108+ - name : Install dependencies with Composer
110109 run : php ./tools/composer update --no-ansi --no-interaction --no-progress
111110
112- - name : Run tests with phpunit/phpunit
111+ - name : Run tests with PHPUnit
113112 run : vendor/bin/phpunit --coverage-clover=coverage.xml
114113
115114 - name : Send code coverage report to Codecov.io
0 commit comments