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