caching linux dependencies between build checks

This commit is contained in:
Abdenasser 2024-11-08 17:03:23 +01:00
parent f16595acb2
commit 3389941cca

View File

@ -28,6 +28,15 @@ jobs:
- uses: Swatinem/rust-cache@v2
- name: Cache Linux Dependencies
id: cache-apt
uses: actions/cache@v3
with:
path: /var/cache/apt/archives
key: ${{ runner.os }}-apt-${{ hashFiles('.github/workflows/build-check.yml') }}
restore-keys: |
${{ runner.os }}-apt-
- name: Install Linux Dependencies
run: |
sudo apt-get update