-
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
26 additions
and
1 deletion.
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
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,24 @@ | ||
name: Domain Test | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'Domain/**' | ||
|
||
jobs: | ||
Build: | ||
runs-on: macos-latest | ||
|
||
steps: | ||
# 저장소의 코드를 가져옴 | ||
- name: Checkout project | ||
uses: actions/checkout@v4 | ||
|
||
# 도메인 테스트 코드 실행 | ||
- name: Run Domain module tests | ||
run: | | ||
xcodebuild \ | ||
-project AirplaIN.xcodeproj \ | ||
-scheme Domain \ | ||
-sdk iphonesimulator \ | ||
test | xcpretty |