Skip to content

Commit 717d017

Browse files
wip: use GitHub expressions
1 parent a5c664a commit 717d017

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,15 @@ on:
2626

2727
jobs:
2828
phpunit:
29-
name: PHP ${{ matrix.php-version || 'Ø' }} - Sf ${{ matrix.symfony-require || 'Ø' }} - deps ${{ matrix.dependencies || 'Ø' }} - stab. ${{ matrix.stability || 'Ø' }}${{ matrix.remove-orm && ' - remove ORM' || '' }}${{ matrix.remove-doctrine-messenger && ' - remove Messenger' || '' }}
29+
name: >
30+
${{ format('PHP {0} - Sf {1} - deps {2} - stab. {3}',
31+
matrix.php-version || 'Ø',
32+
matrix.symfony-require || 'Ø',
33+
matrix.dependencies || 'Ø',
34+
matrix.stability || 'Ø'
35+
) }}
36+
${{ matrix.remove-orm && ' - remove ORM' || '' }}
37+
${{ matrix.remove-doctrine-messenger && ' - remove Messenger' || '' }}
3038
runs-on: "ubuntu-latest"
3139
env:
3240
SYMFONY_REQUIRE: ${{matrix.symfony-require}}

0 commit comments

Comments
 (0)