From 070a45f1c4a09ce5bead2c889b77d341e9b34414 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Tue, 26 Sep 2023 15:32:58 +0200 Subject: [PATCH] Use cargo install --locked for reproducible builds --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7fe5db7..79a0bbf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: - name: Install hyperfine and just run: brew install hyperfine just - name: Install rust-script - run: cargo install --path . + run: cargo install --locked --path . - name: Test examples run: ./test-examples.sh working-directory: examples