|
26 | 26 | - "^9.2.16"
|
27 | 27 |
|
28 | 28 | symfony-version:
|
| 29 | + - "^7.0" |
29 | 30 | - "^6.0"
|
30 | 31 | - "^5.0"
|
31 | 32 |
|
|
40 | 41 | - "pcov"
|
41 | 42 |
|
42 | 43 | exclude:
|
| 44 | + - php-version: "8.1" |
| 45 | + symfony-version: "^7.0" |
| 46 | + - php-version: "8.0" |
| 47 | + symfony-version: "^7.0" |
| 48 | + - php-version: "7.4" |
| 49 | + symfony-version: "^7.0" |
43 | 50 | - php-version: "7.4"
|
44 | 51 | symfony-version: "^6.0"
|
45 | 52 | - php-version: "8.0"
|
@@ -103,7 +110,7 @@ jobs:
|
103 | 110 | run: composer require --no-update "phpunit/php-code-coverage:${{ matrix.php-code-coverage-version }}"
|
104 | 111 |
|
105 | 112 | - name: Remove PHP-CS-Fixer if not called
|
106 |
| - if: matrix.php-version != '8.1' || matrix.symfony-version != '^5.0' || matrix.dependencies != 'highest' |
| 113 | + if: matrix.php-version != '8.2' || matrix.symfony-version != '^6.0' || matrix.dependencies != 'highest' |
107 | 114 | run: composer remove --dev --no-update "friendsofphp/php-cs-fixer";
|
108 | 115 |
|
109 | 116 | - name: Install dependencies (low)
|
@@ -141,19 +148,19 @@ jobs:
|
141 | 148 | else
|
142 | 149 | php -dmemory_limit=-1 vendor/phpunit/phpunit/phpunit --coverage-clover=build/coverage-phpunit/clover.xml;
|
143 | 150 | fi;
|
144 |
| - if [ "${{ matrix.php-version }}" = "8.1" ] && [ "${{ matrix.driver }}" != "none" ]; then |
| 151 | + if [ "${{ matrix.php-version }}" = "8.2" ] && [ "${{ matrix.driver }}" != "none" ]; then |
145 | 152 | composer global require scrutinizer/ocular;
|
146 | 153 | ~/.composer/vendor/bin/ocular code-coverage:upload --format=php-clover build/coverage-phpunit/clover.xml;
|
147 | 154 | fi;
|
148 | 155 |
|
149 | 156 | - name: Behat
|
150 | 157 | run: |
|
151 | 158 | php -dmemory_limit=-1 vendor/behat/behat/bin/behat --strict;
|
152 |
| - if [ "${{ matrix.php-version }}" = "8.1" ] && [ "${{ matrix.driver }}" != "none" ]; then |
| 159 | + if [ "${{ matrix.php-version }}" = "8.2" ] && [ "${{ matrix.driver }}" != "none" ]; then |
153 | 160 | composer global require scrutinizer/ocular;
|
154 | 161 | ~/.composer/vendor/bin/ocular code-coverage:upload --format=php-clover build/coverage-behat/clover.xml;
|
155 | 162 | fi;
|
156 | 163 |
|
157 | 164 | - name: Check code style
|
158 |
| - if: matrix.php-version == '8.1' && matrix.symfony-version == '^5.0' && matrix.dependencies == 'highest' |
| 165 | + if: matrix.php-version == '8.2' && matrix.symfony-version == '^6.0' && matrix.dependencies == 'highest' |
159 | 166 | run: vendor/bin/php-cs-fixer fix --verbose --dry-run --diff --allow-risky=yes
|
0 commit comments