URLSessionTask과 관계 없이 ResourceLoader가 원하는 데이터를 전달할 수 있도록 수정 #548
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 |