mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-20 20:48:43 +00:00
Fix syntax err in workflow "ci"
Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
parent
2ea03f6b29
commit
4b6b3e667c
1 changed files with 18 additions and 19 deletions
37
.github/workflows/ci.yml
vendored
37
.github/workflows/ci.yml
vendored
|
@ -11,22 +11,21 @@ jobs:
|
||||||
test:
|
test:
|
||||||
name: test
|
name: test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
steps:
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/checkout@v2
|
- name: Configure toolchain
|
||||||
- name: Configure toolchain
|
uses: actions-rs/toolchain@v1
|
||||||
uses: actions-rs/toolchain@v1
|
with:
|
||||||
with:
|
toolchain: stable
|
||||||
toolchain: stable
|
override: true
|
||||||
override: true
|
- name: Configure caching
|
||||||
- name: Configure caching
|
uses: actions/cache@v2
|
||||||
uses: actions/cache@v2
|
with:
|
||||||
with:
|
key: ${{ matrix.os }}-${{ matrix.target }}-testing
|
||||||
key: ${{ matrix.os }}-${{ matrix.target }}-testing
|
path: |
|
||||||
path: |
|
${{ env.HOME }}/.cargo
|
||||||
${{ env.HOME }}/.cargo
|
target
|
||||||
target
|
- name: test
|
||||||
- name: test
|
uses: actions-rs/cargo@v1
|
||||||
uses: actions-rs/cargo@v1
|
with:
|
||||||
with:
|
command: test
|
||||||
command: test
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue