루틴 액션을 실행하는 중 오류가 발생하면 다음 액션을 이동하지 않고 pause 상태로 이동하게 변경 #505
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: Test PR | |
on: pull_request | |
jobs: | |
test: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache Carthage | |
id: cache-carthage | |
uses: actions/cache@v3 | |
with: | |
path: Carthage | |
key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }} | |
restore-keys: | | |
${{ runner.os }}-carthage- | |
- name: Update Carthage | |
if: steps.cache-carthage.outputs.cache-hit != 'true' | |
run: carthage bootstrap --use-xcframeworks --platform iOS --cache-builds | |
- name: Run tests | |
run: xcodebuild -project nugu-ios.xcodeproj -scheme SampleApp CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO |