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