mirror of
https://github.com/async-rs/async-std.git
synced 2025-01-29 00:35:31 +00:00
ci: speed up github actions
This commit is contained in:
parent
e707ea96e0
commit
7999e6bf4b
1 changed files with 18 additions and 18 deletions
36
.github/workflows/ci.yml
vendored
36
.github/workflows/ci.yml
vendored
|
@ -29,6 +29,24 @@ jobs:
|
||||||
toolchain: ${{ matrix.rust }}
|
toolchain: ${{ matrix.rust }}
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
|
- name: Cache cargo registry
|
||||||
|
uses: actions/cache@v1
|
||||||
|
with:
|
||||||
|
path: ~/.cargo/registry
|
||||||
|
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }}
|
||||||
|
|
||||||
|
- name: Cache cargo index
|
||||||
|
uses: actions/cache@v1
|
||||||
|
with:
|
||||||
|
path: ~/.cargo/git
|
||||||
|
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-index-${{ hashFiles('**/Cargo.toml') }}
|
||||||
|
|
||||||
|
- name: Cache cargo build
|
||||||
|
uses: actions/cache@v1
|
||||||
|
with:
|
||||||
|
path: target
|
||||||
|
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-build-target-${{ hashFiles('**/Cargo.toml') }}
|
||||||
|
|
||||||
- name: check
|
- name: check
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
|
@ -66,12 +84,6 @@ jobs:
|
||||||
command: test
|
command: test
|
||||||
args: --all --features "unstable attributes"
|
args: --all --features "unstable attributes"
|
||||||
|
|
||||||
- name: documentation test
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
with:
|
|
||||||
command: test
|
|
||||||
args: --doc --features "unstable attributes"
|
|
||||||
|
|
||||||
build__with_no_std:
|
build__with_no_std:
|
||||||
name: Build with no-std
|
name: Build with no-std
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -117,15 +129,3 @@ jobs:
|
||||||
|
|
||||||
- name: Docs
|
- name: Docs
|
||||||
run: cargo doc --features docs
|
run: cargo doc --features docs
|
||||||
|
|
||||||
# clippy_check:
|
|
||||||
# name: Clippy check
|
|
||||||
# runs-on: ubuntu-latest
|
|
||||||
# steps:
|
|
||||||
# - uses: actions/checkout@v1
|
|
||||||
# - name: Install rust
|
|
||||||
# run: rustup update beta && rustup default beta
|
|
||||||
# - name: Install clippy
|
|
||||||
# run: rustup component add clippy
|
|
||||||
# - name: clippy
|
|
||||||
# run: cargo clippy --all --features unstable
|
|
||||||
|
|
Loading…
Reference in a new issue