From 5f5f428078fc3e7d6818ce51b4577242df9b58fe Mon Sep 17 00:00:00 2001 From: Ludo Galabru Date: Mon, 18 Oct 2021 15:39:49 -0400 Subject: [PATCH] fix: cargo build --locked in unit tests --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7a01fc244..4ceb378e5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -94,7 +94,7 @@ jobs: env: RUSTFLAGS: "-Zinstrument-coverage" LLVM_PROFILE_FILE: "clarinet-%p-%m.profraw" - run: cargo build && cargo test + run: cargo build --locked && cargo test - name: Generate coverage run: grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o lcov.info