From efb318d4e6bf38348a5cbd6edbe9d266519f422d Mon Sep 17 00:00:00 2001 From: Matt Ehrnschwender Date: Sat, 10 Feb 2024 18:28:59 -0500 Subject: [PATCH] Remove cache --- .github/workflows/test.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index edfab53..acfd68e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,24 +30,6 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Setup cargo cache - uses: actions/cache@v4 - with: - path: ~/.cargo - key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml') }} - restore-keys: | - ${{ runner.os }}-cargo-${{ hashFiles('Cargo.toml') }} - ${{ runner.os }}-cargo - - - name: Setup cargo target cache - uses: actions/cache@v4 - with: - path: target - key: ${{ runner.os }}-cargo-target-${{ hashFiles('Cargo.toml') }} - restore-keys: | - ${{ runner.os }}-cargo-target-${{ hashFiles('Cargo.toml') }} - ${{ runner.os }}-cargo-target - - name: Install system libraries if: ${{ runner.os == 'Linux' }} run: sudo apt-get update -y && sudo apt-get install -y libdbus-1-dev