Skip to content

Commit

Permalink
alternative approach for ignoring cached installs
Browse files Browse the repository at this point in the history
  • Loading branch information
jglynn committed Nov 2, 2023
1 parent 3375377 commit 8e827ea
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/cosmwasm-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,12 @@ jobs:
target: wasm32-unknown-unknown
components: clippy

- if: ${{ steps.cache-rust.outputs.cache-hit != 'true' }}
name: Install Tools
- name: Install Tools
run: |
cargo install cosmwasm-check --version 1.4.1 --locked
cargo install cargo-llvm-cov --version 0.5.35 --locked
cargo install cargo-sbom --version 0.8.4 --locked
cargo install cargo-sonar --version 0.21.0 --locked
cargo install cosmwasm-check --version 1.4.1 --locked || true
cargo install cargo-llvm-cov --version 0.5.35 --locked || true
cargo install cargo-sbom --version 0.8.4 --locked || true
cargo install cargo-sonar --version 0.21.0 --locked || true
- name: Versions
run: |
Expand Down

0 comments on commit 8e827ea

Please sign in to comment.