ci: require that Cargo.lock is up to date

Versions in the lockfile should
be compatible with MSRV
and not automatically downgraded in CI.
This commit is contained in:
link2xt
2025-10-02 12:33:02 +00:00
parent 4d624d8c3a
commit d509b0cf5c

View File

@@ -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