From 4b38e7b1d72c0eb7f836074e070aae65c1577ff3 Mon Sep 17 00:00:00 2001 From: Martin Nordholts Date: Sat, 28 Aug 2021 13:51:22 +0200 Subject: [PATCH] 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. --- .github/workflows/CICD.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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