From 70384a5fbfbad71762aac9a67cbca712c573e56e Mon Sep 17 00:00:00 2001 From: messense Date: Tue, 3 Nov 2020 19:05:43 +0800 Subject: [PATCH] Remove CI cache --- .github/workflows/workflow.yml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index dd50c66..19e17b3 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -116,25 +116,6 @@ jobs: # Checkout the branch being tested - uses: actions/checkout@v2 - # Cache files between builds - - name: Cache cargo registry - uses: actions/cache@v1 - with: - path: $HOME/.cargo/registry - key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - - - name: Cache cargo index - uses: actions/cache@v1 - with: - path: $HOME/.cargo/git - key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - - - name: Cache cargo build - uses: actions/cache@v1 - with: - path: target - key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} - # Install all the required dependencies for testing - uses: actions-rs/toolchain@v1 with: