From 575182b1835c540103bc4ec0d0f13c64313fdbe9 Mon Sep 17 00:00:00 2001 From: Rigidity Date: Mon, 15 Jul 2024 21:59:16 -0400 Subject: [PATCH] Remove confirmations --- .github/workflows/rust.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 046129e52..4728e0ab0 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -45,7 +45,7 @@ jobs: run: cargo audit --ignore RUSTSEC-2023-0071 - name: Install cargo-machete - run: cargo binstall cargo-machete + run: cargo binstall cargo-machete -y - name: Unused dependencies run: cargo machete @@ -81,7 +81,7 @@ jobs: - name: Prepare for coverage if: matrix.os == 'ubuntu-latest' run: | - cargo binstall grcov + cargo binstall grcov -y echo "RUSTFLAGS=-Cinstrument-coverage" >> "$GITHUB_ENV" echo "LLVM_PROFILE_FILE=$(pwd)/target/chia_rs-%p-%m.profraw" >> "$GITHUB_ENV" echo "CARGO_TARGET_DIR=$(pwd)/target" >> "$GITHUB_ENV" @@ -130,7 +130,7 @@ jobs: path: ./target/package/*-*.crate - name: Install wasm-pack - run: cargo binstall wasm-pack + run: cargo binstall wasm-pack -y - name: Build and pack wasm run: | @@ -145,7 +145,7 @@ jobs: path: ./wasm/pkg/*-*.tgz - name: Install cargo-workspaces - run: cargo binstall cargo-workspaces + run: cargo binstall cargo-workspaces -y - name: Publish to crates.io if tagged if: startsWith(github.event.ref, 'refs/tags')