From 2826b3586f64c9a8e962574ce4a6b75b5d247d93 Mon Sep 17 00:00:00 2001 From: Eugene Date: Wed, 8 Nov 2023 22:15:27 +0400 Subject: [PATCH] do not lock --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1195d2e..39fc767 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,10 +66,10 @@ jobs: toolchain: ${{ matrix.toolchain }} - name: Rust cache uses: Swatinem/rust-cache@v2 - - name: cargo test --locked - run: cargo test --locked --all-features --all-targets + - name: cargo test + run: cargo test --all-features --all-targets - name: cargo test --doc - run: cargo test --locked --all-features --doc + run: cargo test --all-features --doc coverage: runs-on: ubuntu-latest