|
|
@ -30,19 +30,19 @@ jobs:
|
|
|
|
override: true
|
|
|
|
override: true
|
|
|
|
|
|
|
|
|
|
|
|
- name: Cache cargo registry
|
|
|
|
- name: Cache cargo registry
|
|
|
|
uses: actions/cache@v1
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
path: ~/.cargo/registry
|
|
|
|
path: ~/.cargo/registry
|
|
|
|
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }}
|
|
|
|
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }}
|
|
|
|
|
|
|
|
|
|
|
|
- name: Cache cargo index
|
|
|
|
- name: Cache cargo index
|
|
|
|
uses: actions/cache@v1
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
path: ~/.cargo/git
|
|
|
|
path: ~/.cargo/git
|
|
|
|
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-index-${{ hashFiles('**/Cargo.toml') }}
|
|
|
|
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-index-${{ hashFiles('**/Cargo.toml') }}
|
|
|
|
|
|
|
|
|
|
|
|
- name: Cache cargo build
|
|
|
|
- name: Cache cargo build
|
|
|
|
uses: actions/cache@v1
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
path: target
|
|
|
|
path: target
|
|
|
|
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-build-target-${{ hashFiles('**/Cargo.toml') }}
|
|
|
|
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-build-target-${{ hashFiles('**/Cargo.toml') }}
|
|
|
@ -58,7 +58,7 @@ jobs:
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
command: check
|
|
|
|
command: check
|
|
|
|
args: --features unstable --all --bins --examples --tests
|
|
|
|
args: --features unstable --all --bins --examples --tests
|
|
|
|
|
|
|
|
|
|
|
|
- name: check wasm
|
|
|
|
- name: check wasm
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|