From 6174ab10635fa190e159c9a1f946578b577ef71d Mon Sep 17 00:00:00 2001 From: saeedbashir Date: Wed, 6 Sep 2023 14:36:39 +0500 Subject: [PATCH] chore: adding pod install into github actions flow --- .github/workflows/edXTestSuit.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/edXTestSuit.yml b/.github/workflows/edXTestSuit.yml index fdbd8eb9fe..5fbf6dc036 100644 --- a/.github/workflows/edXTestSuit.yml +++ b/.github/workflows/edXTestSuit.yml @@ -32,7 +32,15 @@ jobs: task: "testRTLPreviousOS" steps: - name: Git checkout - uses: actions/checkout@v2 + uses: actions/checkout@v2 + - name: Pod install + uses: actions/cache@v3 + with: + path: Pods + key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} + restore-keys: | + ${{ runner.os }}-pods- + - name: "Select Xcode 13.2.1" run: | sudo mkdir -p /Library/Developer/CoreSimulator/Profiles/Runtimes @@ -49,4 +57,4 @@ jobs: DESTINATION_ID=$(xcrun simctl create "$DEVICE, $RUNTIME" $DEVICE_ID $RUNTIME_ID) xcrun simctl boot $DESTINATION_ID ./gradlew -q $TASK | xcpretty -c - shell: bash \ No newline at end of file + shell: bash