From f09e0a83c1e6a1f0bed036d676aa20a25cbb7c90 Mon Sep 17 00:00:00 2001 From: aiden vigue Date: Sun, 20 Jun 2021 22:38:53 -0400 Subject: [PATCH] switch to cocoa pods --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a663a01c..43e6d3d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,16 @@ jobs: - name: Checkout uses: actions/checkout@v1 + - uses: actions/cache@v2 + with: + path: Pods + key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} + restore-keys: | + ${{ runner.os }}-pods- + + - name: Install pods + run: pod install + - name: Cache Swift packages uses: actions/cache@v2 with: