summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMartin Nordholts <enselic@gmail.com>2021-08-28 13:51:22 +0200
committerMartin Nordholts <enselic@gmail.com>2021-08-29 15:39:25 +0200
commit4b38e7b1d72c0eb7f836074e070aae65c1577ff3 (patch)
tree39db46f846121d078a8d5ad45f310d00933b79fd /.github
parent43afae34bef9a015d70a9977e159462ae0c4d492 (diff)
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.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/CICD.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml
index 444ffa56..8d306f79 100644
--- a/.github/workflows/CICD.yml
+++ b/.github/workflows/CICD.yml
@@ -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