Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
kigawas committed Dec 9, 2020
1 parent 500d458 commit cd35696
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,11 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: generate-lockfile
- name: Cache cargo folder
uses: actions/cache@v2
- uses: actions/cache@v2
with:
path: |
target
key: ${{ runner.os }}-nightly-${{ hashFiles('**/Cargo.lock') }}
key: ${{ runner.os }}-lint-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/cargo@v1
with:
command: check
Expand All @@ -49,10 +48,13 @@ jobs:
toolchain: stable
override: true
target: wasm32-unknown-unknown
- name: Check versions
run: rustc --version; node --version; cargo generate-lockfile
- name: Cache cargo folder
uses: actions/cache@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- uses: actions-rs/cargo@v1
with:
command: generate-lockfile
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
Expand Down

0 comments on commit cd35696

Please sign in to comment.