Skip to content

Commit

Permalink
ci: update default toolchain in coverage workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepakBomjan committed Nov 24, 2023
1 parent 8d37788 commit 9f1d14d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/cosmwasm-contracts-code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ defaults:
working-directory: contracts/cosmwasm-vm

env:
RUSTC_VERSION: '1.72.1'
RUSTC_VERSION: '1.69.0'
RUSTC_TOOLCHAIN: '1.69.0-x86_64-unknown-linux-gnu'

jobs:
code-coverage:
Expand All @@ -30,7 +31,12 @@ jobs:
with:
submodules: true
- name: Install Rust
run: rustup install "$RUSTC_VERSION"
run: |
rustup install "$RUSTC_VERSION"
rustup default "$RUSTC_TOOLCHAIN"
rustup component add clippy
rustup component add rustfmt
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
- name: Install cargo-llvm-cov
Expand Down

0 comments on commit 9f1d14d

Please sign in to comment.