File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments