From d2ed1c4c394e85dd72f3ea4cc9117e06fb2e0697 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=BCller?= Date: Sat, 23 Sep 2023 13:42:57 +0200 Subject: [PATCH] Add caching for CocoaPods MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcel Müller --- .github/workflows/uitests.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/uitests.yml b/.github/workflows/uitests.yml index 99ddc39b1..fc9b94158 100644 --- a/.github/workflows/uitests.yml +++ b/.github/workflows/uitests.yml @@ -43,7 +43,14 @@ jobs: uses: actions/checkout@v3 with: submodules: true - + + - uses: actions/cache@v3 + with: + path: Pods + key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} + restore-keys: | + ${{ runner.os }}-pods- + - name: Install docker run: | brew install docker