Skip to content

EMT-2244 Source Code Restructure and Cleanup (#1504) #1112

EMT-2244 Source Code Restructure and Cleanup (#1504)

EMT-2244 Source Code Restructure and Cleanup (#1504) #1112

Workflow file for this run

name: Unit tests
on:
push:
pull_request:
branches:
- master
jobs:
verify:
runs-on: macos-15
timeout-minutes: 20
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run unit tests
run: |
echo "branch=${{ github.ref }}" >> $GITHUB_OUTPUT
./scripts/getSimulator
DESTINATION="platform=iOS Simulator,name=$(cat ./iphoneSim),OS=latest"
xcodebuild test \
-project BranchSDK.xcodeproj \
-scheme BranchSDKTests \
-destination "$DESTINATION" \
-testPlan BranchSDKTests | xcpretty && exit ${PIPESTATUS[0]}