Skip to content

Commit a5c330a

Browse files
committed
Fall back to empty string
1 parent fa13fb7 commit a5c330a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/reusable-testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ jobs:
270270
unit: #-----------------------------------------------------------------------
271271
needs: prepare-unit
272272
if: ${{ needs.prepare-unit.outputs.matrix != '' }}
273-
name: Unit test / PHP ${{ matrix.php }}${{ matrix.coverage && ' (with coverage)' || '' }} ${{ startsWith( matrix.os, 'windows' ) && '(Windows)' }} ${{ startsWith( matrix.os, 'macos' ) && '(macOS)' }}
273+
name: Unit test / PHP ${{ matrix.php }}${{ matrix.coverage && ' (with coverage)' || '' }} ${{ startsWith( matrix.os, 'windows' ) && '(Windows)' || '' }} ${{ startsWith( matrix.os, 'macos' ) && '(macOS)' || '' }}
274274
strategy:
275275
fail-fast: false
276276
matrix: ${{ fromJson(needs.prepare-unit.outputs.matrix) }}
@@ -390,7 +390,7 @@ jobs:
390390
functional: #-----------------------------------------------------------------
391391
needs: prepare-functional
392392
if: ${{ needs.prepare-functional.outputs.matrix != '' }}
393-
name: Functional - WP ${{ matrix.wp }} on PHP ${{ matrix.php }} with ${{ matrix.dbtype != 'sqlite' && matrix.mysql || 'SQLite' }}${{ matrix.coverage && ' (with coverage)' || '' }} ${{ startsWith( matrix.os, 'windows' ) && '(Windows)' }} ${{ startsWith( matrix.os, 'macos' ) && '(macOS)' }}
393+
name: Functional - WP ${{ matrix.wp }} on PHP ${{ matrix.php }} with ${{ matrix.dbtype != 'sqlite' && matrix.mysql || 'SQLite' }}${{ matrix.coverage && ' (with coverage)' || '' }} ${{ startsWith( matrix.os, 'windows' ) && '(Windows)' || '' }} ${{ startsWith( matrix.os, 'macos' ) && '(macOS)' || '' }}
394394
strategy:
395395
fail-fast: false
396396
matrix: ${{ fromJson(needs.prepare-functional.outputs.matrix) }}

0 commit comments

Comments
 (0)