Skip to content

Commit 1a6fd7b

Browse files
committed
fix: better CI labels
1 parent c7bd310 commit 1a6fd7b

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

.github/workflows/ci.yml

+7-9
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,23 @@ concurrency:
77

88
jobs:
99
test:
10-
name: Test Suite on ${{ matrix.os }}
10+
name: Test on ${{ matrix.os }}::${{ matrix.label }}
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
os: [macos-latest, ubuntu-latest, windows-latest]
15-
rust: [stable]
1614
include:
1715
- os: macos-latest
18-
artifact_prefix: macOS
1916
target: x86_64-apple-darwin
20-
binary_postfix: ""
17+
label: x86_64
18+
- os: ubuntu-latest
19+
target: x86_64-unknown-linux-gnu
20+
label: x86_64 gnu
2121
- os: ubuntu-latest
22-
artifact_prefix: linux
2322
target: x86_64-unknown-linux-musl
24-
binary_postfix: ""
23+
label: x86_64 musl
2524
- os: windows-latest
26-
artifact_prefix: windows
2725
target: x86_64-pc-windows-msvc
28-
binary_postfix: ".exe"
26+
label: x86_64
2927

3028
steps:
3129
- name: Checkout repository

0 commit comments

Comments
 (0)