Skip to content

Commit 5b9d34a

Browse files
committed
Tweak job name
1 parent d9d59dc commit 5b9d34a

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/ci.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,20 @@ on:
99

1010
jobs:
1111
build_and_test:
12-
name: Build and test on ${{ matrix.os }}
12+
name: Build and test
1313
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
1616
os: [ubuntu-latest, windows-latest, macOS-latest]
17+
rust: [nightly]
1718

1819
steps:
1920
- uses: actions/checkout@master
2021

21-
- name: Install nightly
22+
- name: Install ${{ matrix.rust }}
2223
uses: actions-rs/toolchain@v1
2324
with:
24-
toolchain: nightly
25+
toolchain: ${{ matrix.rust }}
2526
override: true
2627

2728
- name: check

bors.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ status = [
22
# Travis CI
33
"continuous-integration/travis-ci/push",
44
# GitHub Actions
5-
"Build and test on ubuntu-latest",
6-
"Build and test on windows-latest",
7-
"Build and test on macOS-latest",
5+
"Build and test (ubuntu-latest, nightly)",
6+
"Build and test (windows-latest, nightly)",
7+
"Build and test (macOS-latest, nightly)",
88
"Checking fmt and docs",
99
"Clippy check",
1010
]

0 commit comments

Comments
 (0)