From 8f39f5ccda92021834f480d2b35476b536a742ff Mon Sep 17 00:00:00 2001 From: Tobias Koppers Date: Fri, 20 Jan 2023 11:06:19 +0100 Subject: [PATCH] ci(actions): ensure cargo check with frozen lockfile --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0d32f13559891b..55b3777f326706 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -307,7 +307,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: check - args: --workspace --all-targets + args: --workspace --all-targets --locked rust_lint: needs: [determine_jobs, rust_prepare]