From 3c8ce6cd27bcebd0cfb4b9dd1dec6f8153aed237 Mon Sep 17 00:00:00 2001 From: Hergy Fongue Date: Thu, 18 Jan 2024 22:20:57 +0100 Subject: [PATCH] removed cache step for the moment Signed-off-by: Hergy Fongue --- .github/workflows/linter.yaml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/linter.yaml b/.github/workflows/linter.yaml index 1b4c1d0..4cbd06f 100644 --- a/.github/workflows/linter.yaml +++ b/.github/workflows/linter.yaml @@ -58,19 +58,19 @@ jobs: profile: minimal toolchain: nightly components: rustfmt, clippy - - name: Rust Cache - uses: Swatinem/rust-cache@v2 - continue-on-error: false - with: - path: | - ~/.cargo/bin - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - target/ - key: ${{ runner.os }}-sdk-rust-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-sdk-rust- +# - name: Rust Cache +# uses: Swatinem/rust-cache@v2 +# continue-on-error: false +# with: +# path: | +# ~/.cargo/bin +# ~/.cargo/registry/index/ +# ~/.cargo/registry/cache/ +# ~/.cargo/git/db/ +# target/ +# key: ${{ runner.os }}-sdk-rust-${{ hashFiles('**/Cargo.lock') }} +# restore-keys: | +# ${{ runner.os }}-sdk-rust- - name: Check cargo version run: cargo --version - name: Format