Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix cache cargo subcommand install #119

Merged
merged 1 commit into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/devtools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:
with:
toolchain: ${{ steps.toolchain.outputs.toolchain }}

- name: Install wasm-pack
run: cargo install wasm-pack --locked

- name: cache dependencies
uses: Swatinem/[email protected]

- name: Install wasm-pack
run: cargo install wasm-pack --locked

- name: install pnpm
working-directory: devtools-frontend
run: corepack enable
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ jobs:
toolchain: ${{ steps.toolchain.outputs.toolchain }}
components: clippy, rustfmt

- name: cache dependencies
uses: Swatinem/[email protected]

- name: Install cargo-about
run: cargo install cargo-about --locked

- name: Install wasm-pack
run: cargo install wasm-pack --locked

- name: cache dependencies
uses: Swatinem/[email protected]

- name: reviewdog / clippy
uses: sksat/[email protected]
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rustdoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ jobs:
with:
toolchain: ${{ steps.toolchain.outputs.toolchain }}

- name: cache dependencies
uses: Swatinem/[email protected]

- name: Install cargo-about
run: cargo install cargo-about --locked

- name: Install wasm-pack
run: cargo install wasm-pack --locked

- name: cache dependencies
uses: Swatinem/[email protected]

- run: rm -rf ./target/doc

- run: cargo doc --all --no-deps
Expand Down
Loading