From b965bfc1160f7b77ef95a2532000ce794e3b89f3 Mon Sep 17 00:00:00 2001 From: Carter Anderson Date: Mon, 8 Jun 2020 10:06:27 -0700 Subject: [PATCH] github actions: remove cache (just caused hangs and failures) --- .github/workflows/rust.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 29acfa1e9d..0953eb7f56 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,14 +18,6 @@ jobs: with: toolchain: stable override: true - - uses: actions/cache@v2 - with: - path: | - .cargo_home - target - key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - - name: Configure cargo data directory - run: echo "::set-env name=CARGO_HOME::$(pwd)/.cargo_home" - name: Build run: cargo check - name: Run tests