From 73a9b41c2a85c8e9b3fd1487c1927be335b9973b Mon Sep 17 00:00:00 2001 From: jake <77554505+brxken128@users.noreply.github.com> Date: Thu, 11 Apr 2024 04:37:42 +0100 Subject: [PATCH] [ENG-1734]: Check that `Cargo.lock` is up-to-date (#2309) * feat: check that `Cargo.lock` is up-to-date * test: malform `Cargo.lock` to test PR * revert: "test: malform `Cargo.lock` to test PR" This reverts commit 2cdfbe5ae33994fe1cc5302a550cd53394f21e46. --- .github/workflows/ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5ec9daf1..1cbe79397 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -107,10 +107,10 @@ jobs: with: swap-size-mb: 3072 root-reserve-mb: 6144 - remove-dotnet: 'true' - remove-codeql: 'true' - remove-haskell: 'true' - remove-docker-images: 'true' + remove-dotnet: "true" + remove-codeql: "true" + remove-haskell: "true" + remove-docker-images: "true" - name: Symlink target to C:\ if: ${{ runner.os == 'Windows' }} @@ -143,7 +143,7 @@ jobs: if: steps.filter.outcome != 'success' || steps.filter.outputs.changes == 'true' uses: ./.github/actions/setup-rust with: - restore-cache: 'false' + restore-cache: "false" - name: Run rustfmt if: steps.filter.outcome != 'success' || steps.filter.outputs.changes == 'true' @@ -162,10 +162,10 @@ jobs: with: swap-size-mb: 3072 root-reserve-mb: 6144 - remove-dotnet: 'true' - remove-codeql: 'true' - remove-haskell: 'true' - remove-docker-images: 'true' + remove-dotnet: "true" + remove-codeql: "true" + remove-haskell: "true" + remove-docker-images: "true" - name: Symlink target to C:\ if: ${{ runner.os == 'Windows' }} @@ -206,7 +206,7 @@ jobs: if: steps.filter.outcome != 'success' || steps.filter.outputs.changes == 'true' uses: actions-rs-plus/clippy-check@v2 with: - args: --workspace --all-features + args: --workspace --all-features --locked # test: # name: Test (${{ matrix.platform }})