[Refactor] NearbyNetwork 광고, 검색 기능 리팩터링 #1
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: NearbyNetwork Test | |
on: | |
pull_request: | |
paths: | |
- 'NearbyNetwork/**' | |
jobs: | |
NearbyNetwork_Test: | |
runs-on: macos-14 | |
steps: | |
# 저장소의 코드를 가져옴 | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
# 근거리 통신 모듈 테스트 코드 실행 | |
- name: Run NearbyNetwork module tests | |
run: | | |
set -o pipefail && \ | |
xcodebuild \ | |
-workspace AirplaIN.xcworkspace \ | |
-scheme NearbyNetworkTests \ | |
-destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=17.5' \ | |
clean test | xcpretty --test --color |