Skip to content

Commit

Permalink
Include channel in job name
Browse files Browse the repository at this point in the history
  • Loading branch information
Johennes committed Apr 29, 2024
1 parent 255a885 commit 1f1d3f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,16 @@ jobs:
run: cargo clippy --all-targets -- -D warnings

test:
name: ${{ matrix.target.name }}
name: ${{ matrix.target.name }} ${{ matrix.channel }}
needs: [clippy]

runs-on: ${{ matrix.target.os }}
strategy:
matrix:
target: [
{ "os": "ubuntu-latest", "toolchain": "x86_64-unknown-linux-gnu", "name": "Linux GNU" },
{ "os": "macos-13", "toolchain": "x86_64-apple-darwin ", "name": "macOS (x86)" },
{ "os": "macos-latest", "toolchain": "aarch64-apple-darwin", "name": "macOS (ARM)" },
{ "os": "macos-13", "toolchain": "x86_64-apple-darwin ", "name": "macOS x86" },
{ "os": "macos-latest", "toolchain": "aarch64-apple-darwin", "name": "macOS arm" },
{ "os": "windows-latest", "toolchain": "x86_64-pc-windows-msvc", "name": "Windows MSVC" },
]
channel: [stable, beta, nightly]
Expand Down

0 comments on commit 1f1d3f1

Please sign in to comment.