Skip to content

Commit

Permalink
feature: 도메인 변경 시 실행할 워크플로 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
taipaise committed Nov 13, 2024
1 parent 6c15562 commit c526421
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
# 빌드 가능 여부 확인
- name: Build AirplaIN
run: |
xcodebuild -workspace AirplaIN.xcworkspace \
xcodebuild \
-workspace AirplaIN.xcworkspace \
-scheme AirplaIN \
-configuration Debug \
-sdk iphonesimulator \
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/domain_test.yml
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

0 comments on commit c526421

Please sign in to comment.