From d509b0cf5c8834fbf02a28488e178ad17ee399ee Mon Sep 17 00:00:00 2001 From: link2xt Date: Thu, 2 Oct 2025 12:33:02 +0000 Subject: [PATCH] ci: require that Cargo.lock is up to date Versions in the lockfile should be compatible with MSRV and not automatically downgraded in CI. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d15475615..e9bfdf2d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -139,12 +139,12 @@ jobs: - name: Tests env: RUST_BACKTRACE: 1 - run: cargo nextest run --workspace + run: cargo nextest run --workspace --locked - name: Doc-Tests env: RUST_BACKTRACE: 1 - run: cargo test --workspace --doc + run: cargo test --workspace --locked --doc - name: Test cargo vendor run: cargo vendor