From 5223c1a5f8998d3eb3806d2fb7a46eb4f70d5f68 Mon Sep 17 00:00:00 2001 From: Dinonard <3002868+Dinonard@users.noreply.github.com> Date: Wed, 30 Mar 2022 18:24:06 +0200 Subject: [PATCH] Remove caching for UTs (#606) --- .github/workflows/integration.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 5b3c29d179..eacf886306 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -17,16 +17,16 @@ jobs: - name: Check targets are installed correctly run: rustup target list --installed - - uses: actions/cache@v2 - with: - path: | - ~/.cargo/registry - ~/.cargo/git - target/ - key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - ${{ runner.os }}-cargo + # - uses: actions/cache@v2 + # with: + # path: | + # ~/.cargo/registry + # ~/.cargo/git + # target/ + # key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + # restore-keys: | + # ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + # ${{ runner.os }}-cargo - name: Run all tests run: cargo test --all-features