Skip to content

Commit

Permalink
Add custom job name for matrix job
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoburns committed Jun 21, 2024
1 parent 3aa5f4d commit 551895a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ jobs:
matrix:
platform:
- {
name: windows,
target: x86_64-pc-windows-msvc,
os: windows-latest,
cross: false,
Expand All @@ -95,6 +96,7 @@ jobs:
setup: perl -pi.bak -e 's/opt-level = 2/opt-level = 0/g' Cargo.toml
}
- {
name: macos,
target: aarch64-apple-darwin,
os: macos-latest,
cross: false,
Expand All @@ -103,6 +105,7 @@ jobs:
setup: perl -pi.bak -e 's/opt-level = 2/opt-level = 0/g' Cargo.toml
}
- {
name: linux,
target: x86_64-unknown-linux-gnu,
os: ubuntu-latest,
cross: false,
Expand All @@ -118,6 +121,8 @@ jobs:
perl -pi.bak -e 's/opt-level = 2/opt-level = 0/g' Cargo.toml"
}

name: Test (${{ matrix.platform.name }})

steps:
- uses: actions/checkout@v4
- name: install stable
Expand Down

0 comments on commit 551895a

Please sign in to comment.