[ADOTTPMTES-3984] 필수 (강제) 업데이트&서비스 점검 시, 사용중인 유저 앱 종료 프로세스 구축 (v2) 를 위한 앱 종료 Directive 추가 #555
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 |