fix: SIGKILL signal caused by synchronous waiting in device-orientation logic #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Testing | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Cache cocoapods | |
uses: actions/cache@v4 | |
with: | |
path: Pods | |
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-pods- | |
- name: Pod Install | |
run: cd Example && pod install && cd .. | |
- name: Run tests | |
run: | | |
xcodebuild test -workspace Example/GrowingAnalytics.xcworkspace \ | |
-scheme GrowingAnalyticsTests \ | |
-testPlan GrowingAnalyticsTests \ | |
-destination 'platform=iOS Simulator,name=iPhone 14' |