Include toolchain in the job name

Signed-off-by: Robert Vojta <rvojta@me.com>
This commit is contained in:
Robert Vojta 2019-10-18 23:06:02 +02:00
parent d2e5fca7a1
commit 39fc90ad9e
No known key found for this signature in database
GPG Key ID: 9D3E01ABC4B5802C

View File

@ -1,7 +1,7 @@
name: Crossterm Test
on:
# Build master only
# Build master branch only
push:
branches:
- master
@ -12,12 +12,13 @@ on:
jobs:
test:
name: Running on ${{ matrix.os }}
name: Rust ${{matrix.rust}} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-2019, macOS-latest]
rust: [stable, nightly]
# Allow failures on nightly, it's just informative
include:
- rust: stable
can-fail: false