1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-04 09:30:49 +00:00

ci: Reenable caching in CI

This commit is contained in:
Matan Kushner 2021-09-21 14:30:36 +01:00
parent 35f6206593
commit 43feb6e4ec
No known key found for this signature in database
GPG Key ID: BFF10DF8EAA776DD

View File

@ -119,14 +119,14 @@ jobs:
run: sudo apt-get install libdbus-1-dev
# Cache files between builds
# - name: Setup | Cache Cargo
# uses: actions/cache@v2
# with:
# path: |
# ~/.cargo/registry
# ~/.cargo/git
# target
# key: ${{ runner.os }}-${{ matrix.rust }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Setup | Cache Cargo
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-${{ matrix.rust }}-cargo-${{ hashFiles('**/Cargo.lock') }}
# Install all the required dependencies for testing
- name: Setup | Rust