[Refactor] 도메인 모듈 리팩토링 #112
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: Domain Test | |
on: | |
pull_request: | |
paths: | |
- 'Domain/**' | |
jobs: | |
Domain_Test: | |
runs-on: macos-14 | |
steps: | |
# 저장소의 코드를 가져옴 | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
# 도메인 테스트 코드 실행 | |
- name: Run Domain module tests | |
run: | | |
set -o pipefail && \ | |
xcodebuild \ | |
-workspace AirplaIN.xcworkspace \ | |
-scheme DomainTests \ | |
-destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=17.5' \ | |
clean test | xcpretty --test --color |