From 0ee87c87af7011e344dea6ee0758d9b555a8e2a3 Mon Sep 17 00:00:00 2001 From: Florian Gebhardt Date: Thu, 22 Sep 2022 07:05:32 +0200 Subject: [PATCH] cache apt dependencies --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64461ff..1003727 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,10 @@ jobs: steps: - uses: actions/checkout@v3 - name: Install dependencies via APT - run: sudo apt update && sudo apt install -y libglfw3-dev libglew-dev + uses: awalsh128/cache-apt-pkgs-action@v1 + with: + packages: libglfw3-dev libglew-dev + version: 1.0 - name: Build run: | mkdir build && cd build