From efa41c169c77ab5f3aa89b466f3147cb18f69c8e Mon Sep 17 00:00:00 2001 From: J / Jacob Babich Date: Fri, 11 Oct 2024 03:43:26 -0400 Subject: [PATCH] ci(check-and-build-and-test): in the `msrv` job, break up the deletion step so that it may work on Windows --- .github/workflows/check-and-build-and-test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-and-build-and-test.yml b/.github/workflows/check-and-build-and-test.yml index 0f690e7..3eca206 100644 --- a/.github/workflows/check-and-build-and-test.yml +++ b/.github/workflows/check-and-build-and-test.yml @@ -221,8 +221,10 @@ jobs: shared-key: ${{ matrix.supporteds.target }}-latest-variable cache-on-failure: "true" - - name: Delete existing cargo stuff - run: rm ~/.cargo/bin/rust-analyzer ~/.cargo/bin/rustfmt + - name: Delete existing rust-analyzer + run: rm ~/.cargo/bin/rust-analyzer + - name: Delete existing rustfmt + run: rm ~/.cargo/bin/rustfmt - run: rustup update