Skip to content

AudioSessionManager에서 중복으로 updateAudioSession() 수행하던 현상 수정 #628

AudioSessionManager에서 중복으로 updateAudioSession() 수행하던 현상 수정

AudioSessionManager에서 중복으로 updateAudioSession() 수행하던 현상 수정 #628

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