Skip to content

Commit d8d8eb5

Browse files
committed
change title
1 parent 761156f commit d8d8eb5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
unit: #-----------------------------------------------------------------------
125125
needs: prepare-unit
126126
if: ${{ needs.prepare-unit.outputs.matrix != '' }}
127-
name: Unit test / PHP ${{ matrix.php }}${{ matrix.coverage && ' (with coverage)' || '' }}
127+
name: Unit test / PHP ${{ matrix.php }}${{ matrix.coverage && ' (with coverage)' || '' }} (${{ matrix.os || 'ubuntu-22.04' }})
128128
strategy:
129129
fail-fast: false
130130
matrix: ${{ fromJson(needs.prepare-unit.outputs.matrix) }}
@@ -243,11 +243,11 @@ jobs:
243243
functional: #-----------------------------------------------------------------
244244
needs: prepare-functional
245245
if: ${{ needs.prepare-functional.outputs.matrix != '' }}
246-
name: Functional - WP ${{ matrix.wp }} on PHP ${{ matrix.php }} with ${{ matrix.dbtype != 'sqlite' && matrix.mysql || 'SQLite' }}${{ matrix.coverage && ' (with coverage)' || '' }}
246+
name: Functional - WP ${{ matrix.wp }} on PHP ${{ matrix.php }} with ${{ matrix.dbtype != 'sqlite' && matrix.mysql || 'SQLite' }}${{ matrix.coverage && ' (with coverage)' || '' }} (${{ matrix.os || 'ubuntu-22.04' }})
247247
strategy:
248248
fail-fast: false
249249
matrix: ${{ fromJson(needs.prepare-functional.outputs.matrix) }}
250-
runs-on: ubuntu-22.04
250+
runs-on: ${{ matrix.os || 'ubuntu-22.04' }}
251251

252252
continue-on-error: ${{ matrix.dbtype == 'sqlite' || matrix.dbtype == 'mariadb' || matrix.php == 'nightly' }}
253253

0 commit comments

Comments
 (0)