From 5b9d34a34c33a52da64b5116efaf59d8208b6e3f Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 6 Oct 2019 23:18:34 +0900 Subject: [PATCH] Tweak job name --- .github/workflows/ci.yml | 7 ++++--- bors.toml | 6 +++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aec355b0..b92e50b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,19 +9,20 @@ on: jobs: build_and_test: - name: Build and test on ${{ matrix.os }} + name: Build and test runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] + rust: [nightly] steps: - uses: actions/checkout@master - - name: Install nightly + - name: Install ${{ matrix.rust }} uses: actions-rs/toolchain@v1 with: - toolchain: nightly + toolchain: ${{ matrix.rust }} override: true - name: check diff --git a/bors.toml b/bors.toml index 74894404..c02883d8 100644 --- a/bors.toml +++ b/bors.toml @@ -2,9 +2,9 @@ status = [ # Travis CI "continuous-integration/travis-ci/push", # GitHub Actions - "Build and test on ubuntu-latest", - "Build and test on windows-latest", - "Build and test on macOS-latest", + "Build and test (ubuntu-latest, nightly)", + "Build and test (windows-latest, nightly)", + "Build and test (macOS-latest, nightly)", "Checking fmt and docs", "Clippy check", ]