From bd650d41c6651edd4ad93b9ecb9fa15534bd5257 Mon Sep 17 00:00:00 2001 From: Alexis Lefebvre Date: Fri, 28 Nov 2025 00:10:18 +0100 Subject: [PATCH] chore: show parameters in name of CI jobs --- .github/workflows/continuous-integration.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 1c95434ec..d53858c31 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -1,5 +1,4 @@ - -name: "Continuous Integration" +name: "CI: PHPUnit" on: pull_request: @@ -27,7 +26,15 @@ on: jobs: phpunit: - name: "PHPUnit" + name: > + ${{ format('PHP {0} - Sf {1} - deps {2} - stab. {3}', + matrix.php-version || 'Ø', + matrix.symfony-require || 'Ø', + matrix.dependencies || 'Ø', + matrix.stability || 'Ø' + ) }} + ${{ matrix.remove-orm && ' - remove ORM' }} + ${{ matrix.remove-doctrine-messenger && ' - remove Messenger' }} runs-on: "ubuntu-latest" env: SYMFONY_REQUIRE: ${{matrix.symfony-require}}