-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
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 |
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