Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
chore: adding pod install into github actions flow
Browse files Browse the repository at this point in the history
  • Loading branch information
saeedbashir committed Sep 6, 2023
1 parent 3d9b8d3 commit 6174ab1
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/edXTestSuit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
shell: bash

0 comments on commit 6174ab1

Please sign in to comment.