CICD: Swap target and os in matrix job name

The full name can frequently not be shown, and target is more relevant than os,
so show target first.
pull/1828/head
Martin Nordholts 3 years ago
parent 43afae34be
commit 4b38e7b1d7

@ -95,7 +95,7 @@ jobs:
args: --locked --no-deps --document-private-items --all-features
build:
name: ${{ matrix.job.os }} (${{ matrix.job.target }})
name: ${{ matrix.job.target }} (${{ matrix.job.os }})
runs-on: ${{ matrix.job.os }}
strategy:
fail-fast: false

Loading…
Cancel
Save