mirror of
https://github.com/async-rs/async-std.git
synced 2025-01-16 02:39:55 +00:00
Tweak job name
This commit is contained in:
parent
d9d59dc710
commit
5b9d34a34c
2 changed files with 7 additions and 6 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
@ -9,19 +9,20 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_and_test:
|
build_and_test:
|
||||||
name: Build and test on ${{ matrix.os }}
|
name: Build and test
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||||
|
rust: [nightly]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@master
|
- uses: actions/checkout@master
|
||||||
|
|
||||||
- name: Install nightly
|
- name: Install ${{ matrix.rust }}
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: nightly
|
toolchain: ${{ matrix.rust }}
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
- name: check
|
- name: check
|
||||||
|
|
|
@ -2,9 +2,9 @@ status = [
|
||||||
# Travis CI
|
# Travis CI
|
||||||
"continuous-integration/travis-ci/push",
|
"continuous-integration/travis-ci/push",
|
||||||
# GitHub Actions
|
# GitHub Actions
|
||||||
"Build and test on ubuntu-latest",
|
"Build and test (ubuntu-latest, nightly)",
|
||||||
"Build and test on windows-latest",
|
"Build and test (windows-latest, nightly)",
|
||||||
"Build and test on macOS-latest",
|
"Build and test (macOS-latest, nightly)",
|
||||||
"Checking fmt and docs",
|
"Checking fmt and docs",
|
||||||
"Clippy check",
|
"Clippy check",
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue