From 005d062e227fdbeb88d42b9674b416c87ffb0131 Mon Sep 17 00:00:00 2001 From: Martin Indra Date: Sun, 9 Jul 2023 23:55:52 +0200 Subject: [PATCH] CI: Ensure Cargo.lock is up-to-date (#620) So that a situation like #621 does not repeat. --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 79e6525a..364be55d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -66,7 +66,7 @@ jobs: sudo apt-get install --no-install-recommends -y libasound2-dev libudev-dev - run: rustc --version && cargo --version && cargo clippy --version - name: Build - run: cargo build --verbose --all-targets --all-features + run: cargo build --verbose --all-targets --all-features --locked - name: Clippy run: cargo clippy --all --all-targets --all-features --workspace -- --deny warnings - name: Test