4545 dependency : symfony
4646
4747 tests :
48- name : ${{ matrix.job-name }}
48+ name : PHP ${{ matrix.php-version }} & Sf ${{ matrix.symfony-version }} - ${{ matrix.job-name }}
4949 needs : [fetch-supported-versions]
5050 runs-on : ubuntu-latest
5151 permissions :
@@ -62,23 +62,23 @@ jobs:
6262 symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-max }}'
6363 # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
6464 pkg-extra-constraints : behat/gherkin:~4.12.0
65- - job-name : Up to date versions - Special case - Symfony 6.4
65+ - job-name : Up to date versions - Sf 6.4 case
6666 php-version : ' ${{ needs.fetch-supported-versions.outputs.php-max }}'
6767 symfony-version : ' 6.4'
6868 # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
6969 pkg-extra-constraints : behat/gherkin:~4.12.0
7070 - job-name : Bare minimum # => Lowest versions allowed by composer config
7171 php-version : ' ${{ needs.fetch-supported-versions.outputs.php-min }}'
7272 symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-min }}'
73- - job-name : Bare minimum - Special case - Symfony 6.4
73+ - job-name : Bare minimum - Sf 6.4 case
7474 # Fix - Sf 6.4 require php 8.1 minimum !
7575 php-version : ${{ ( needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.1' || needs.fetch-supported-versions.outputs.php-min }}
7676 symfony-version : ' 6.4'
77- - job-name : Late migration - PHP # => Highest symfony version with lowest php version allowed by composer config
77+ - job-name : Late PHP migration # => Highest symfony version with lowest php version allowed by composer config
7878 # Fix - Sf 7.0 require php 8.1 minimum, most of deps require 8.2 !
7979 php-version : ${{ ( needs.fetch-supported-versions.outputs.symfony-max == '7.0' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.2' || needs.fetch-supported-versions.outputs.php-min }}
8080 symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-max }}'
81- - job-name : Late migration - Symfony # => Lowest symfony version with highest php version allowed by composer config
81+ - job-name : Late Symfony migration # => Lowest symfony version with highest php version allowed by composer config
8282 php-version : ' ${{ needs.fetch-supported-versions.outputs.php-max }}'
8383 symfony-version : ' ${{ needs.fetch-supported-versions.outputs.symfony-min }}'
8484 # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
@@ -214,7 +214,7 @@ jobs:
214214 uses : actions/dependency-review-action@v4
215215
216216 nightly-tests :
217- name : Nightly - ${{ matrix.job-name }}
217+ name : Nightly - PHP ${{ matrix.php-version }} & Sf ${{ matrix.symfony-version }} - ${{ matrix.job-name }}
218218 needs : [ fetch-supported-versions, tests ]
219219 if : ${{ github.event_name == 'push' || ( github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'with-nightly-tests') ) }}
220220 runs-on : ubuntu-latest
@@ -227,23 +227,23 @@ jobs:
227227 fail-fast : false
228228 matrix :
229229 include :
230- - job-name : PHP - With highest supported Symfony versions
230+ - job-name : PHP with highest supported Symfony versions
231231 php-version : ${{ needs.fetch-supported-versions.outputs.php-next }}
232232 symfony-version : ${{ needs.fetch-supported-versions.outputs.symfony-max }}
233233 # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
234234 pkg-extra-constraints : behat/gherkin:~4.12.0
235- - job-name : PHP - With lowest supported Symfony versions
235+ - job-name : PHP with lowest supported Symfony versions
236236 php-version : ${{ needs.fetch-supported-versions.outputs.php-next }}
237237 symfony-version : ${{ needs.fetch-supported-versions.outputs.symfony-min }}
238238 # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
239239 pkg-extra-constraints : behat/gherkin:~4.12.0
240- - job-name : Symfony - With highest supported PHP version
240+ - job-name : Symfony with highest supported PHP version
241241 php-version : ${{ needs.fetch-supported-versions.outputs.php-max }}
242242 symfony-version : ${{ needs.fetch-supported-versions.outputs.symfony-next }}
243243 # Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
244244 # Fix - symfony/framework-bundle - Framework bundle <7.0 require php 8.1 minimum !
245245 pkg-extra-constraints : behat/gherkin:~4.12.0
246- - job-name : Symfony - With lowest supported PHP version
246+ - job-name : Symfony with lowest supported PHP version
247247 # Fix - symfony/validator 7.1 require php 8.2 minimum !
248248 php-version : ${{ ( needs.fetch-supported-versions.outputs.symfony-next == '7.1' && needs.fetch-supported-versions.outputs.php-min == '8.0' ) && '8.2' || needs.fetch-supported-versions.outputs.php-min }}
249249 symfony-version : ${{ needs.fetch-supported-versions.outputs.symfony-next }}
0 commit comments