Skip to content

Commit fd498e5

Browse files
chore: show parameters in name of CI jobs
1 parent 93e73f7 commit fd498e5

File tree

1 file changed

+51
-9
lines changed

1 file changed

+51
-9
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 51 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Continuous Integration"
1+
name: "CI"
22

33
on:
44
pull_request:
@@ -28,7 +28,14 @@ on:
2828

2929
jobs:
3030
phpunit-smoke-check:
31-
name: "PHPUnit with SQLite"
31+
name: >
32+
PHPUnit with SQLite -
33+
${{ format('OS {0} - PHP {1} - ext. {2} - deps {3}',
34+
matrix.os || 'Ø',
35+
matrix.php-version || 'Ø',
36+
join(matrix.extension, ', ') || 'Ø',
37+
matrix.dependency-versions || 'Ø'
38+
) }}
3239
uses: ./.github/workflows/phpunit-sqlite.yml
3340
with:
3441
os: ${{ matrix.os }}
@@ -59,7 +66,13 @@ jobs:
5966
extension: "sqlite3"
6067

6168
phpunit-oracle:
62-
name: "PHPUnit with Oracle"
69+
name: >
70+
PHPUnit with Oracle -
71+
${{ format('PHP {0} - Oracle {1} - ext. {2}',
72+
matrix.php-version || 'Ø',
73+
matrix.oracle-version || 'Ø',
74+
join(matrix.extension, ', ') || 'Ø'
75+
) }}
6376
needs: "phpunit-smoke-check"
6477
uses: ./.github/workflows/phpunit-oracle.yml
6578
with:
@@ -91,7 +104,13 @@ jobs:
91104
extension: oci8
92105

93106
phpunit-postgres:
94-
name: "PHPUnit with PostgreSQL"
107+
name: >
108+
PHPUnit with PostgreSQL -
109+
${{ format('PHP {0} - PG {1} - ext. {2}',
110+
matrix.php-version || 'Ø',
111+
matrix.postgres-version || 'Ø',
112+
join(matrix.extension, ', ') || 'Ø'
113+
) }}
95114
needs: "phpunit-smoke-check"
96115
uses: ./.github/workflows/phpunit-postgres.yml
97116
with:
@@ -119,7 +138,13 @@ jobs:
119138
extension: "pdo_pgsql"
120139

121140
phpunit-mariadb:
122-
name: "PHPUnit with MariaDB"
141+
name: >
142+
PHPUnit with MariaDB -
143+
${{ format('PHP {0} - Maria {1} - ext. {2}',
144+
matrix.php-version || 'Ø',
145+
matrix.mariadb-version || 'Ø',
146+
join(matrix.extension, ', ') || 'Ø'
147+
) }}
123148
needs: "phpunit-smoke-check"
124149
uses: ./.github/workflows/phpunit-mariadb.yml
125150
with:
@@ -153,7 +178,14 @@ jobs:
153178
extension: "pdo_mysql"
154179

155180
phpunit-mysql:
156-
name: "PHPUnit with MySQL"
181+
name: >
182+
PHPUnit with MySQL -
183+
${{ format('PHP {0} - MySQL {1} - ext. {2} - suffix {3}',
184+
matrix.php-version || 'Ø',
185+
matrix.mysql-version || 'Ø',
186+
join(matrix.extension, ', ') || 'Ø',
187+
matrix.config-file-suffix || 'Ø'
188+
) }}
157189
needs: "phpunit-smoke-check"
158190
uses: ./.github/workflows/phpunit-mysql.yml
159191
with:
@@ -187,7 +219,13 @@ jobs:
187219
extension: "pdo_mysql"
188220

189221
phpunit-mssql:
190-
name: "PHPUnit with SQL Server"
222+
name: >
223+
PHPUnit with SQL Server -
224+
${{ format('PHP {0} - ext. {1} - collation. {2}',
225+
matrix.php-version || 'Ø',
226+
join(matrix.extension, ', ') || 'Ø',
227+
matrix.collation || 'Ø'
228+
) }}
191229
needs: "phpunit-smoke-check"
192230
uses: ./.github/workflows/phpunit-sqlserver.yml
193231
with:
@@ -214,7 +252,9 @@ jobs:
214252
extension: "pdo_sqlsrv"
215253

216254
phpunit-db2:
217-
name: "PHPUnit with Db2"
255+
name: >
256+
PHPUnit with Db2 -
257+
${{ matrix.php-version || 'Ø' }}
218258
needs: "phpunit-smoke-check"
219259
uses: ./.github/workflows/phpunit-db2.yml
220260
with:
@@ -228,7 +268,9 @@ jobs:
228268
- "8.4"
229269

230270
development-deps:
231-
name: "PHPUnit with PDO_SQLite and development dependencies"
271+
name: >
272+
PHPUnit with PDO_SQLite and development dependencies -
273+
${{ matrix.php-version || 'Ø' }}
232274
runs-on: "ubuntu-24.04"
233275

234276
strategy:

0 commit comments

Comments
 (0)