From 2e7f6b748561e4e9b0ff988a3af6e8cea2ff0538 Mon Sep 17 00:00:00 2001 From: Liam Kinne Date: Sun, 5 May 2024 12:23:37 +1000 Subject: [PATCH] don't use lock file --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5ab93f5..5751247 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -40,7 +40,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Run Cargo check - run: cargo check --all-features --locked + run: cargo check --all-features format: name: Format @@ -70,4 +70,4 @@ jobs: components: clippy - name: Check clippy - run: cargo clippy --all-features --all-targets --locked -- -D warnings + run: cargo clippy --all-features --all-targets -- -D warnings