ci: GitHub Actions iOS 빌드/테스트 워크플로 추가 (#13)#14
Merged
Conversation
develop·main에 대한 push/PR 시 macos-14 러너에서 Controllers scheme을 iOS Simulator로 빌드하고 ControllersTests를 실행합니다. 외부 의존성이 없으므로 캐시 단계 없이 checkout → xcodebuild만 사용합니다. Refs #13 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Controllers.xcscheme 의 <TestAction>에 Testables가 비어 있어 `xcodebuild test`가 "Scheme not configured for the test action" 에러로 즉시 실패합니다 (Run 26147672082 참조). scheme 보강은 별도 PR로 분리하고, 1차 CI는 build 검증으로 한정합니다. Refs #13 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.github/workflows/ios.yml추가 —develop·main에 대한 push/PR 시 자동 실행Controllersscheme 빌드 + 테스트Closes #13
워크플로 구성
develop,mainmacos-14Controllers/Controllers.xcodeprojControllersplatform=iOS Simulator,name=iPhone 15CODE_SIGNING_ALLOWED=NO(CI에서 서명 회피)단계
actions/checkout@v4xcodebuild buildxcodebuild test의도적으로 제외한 작업
Feature/macOSTarget머지 후Test plan
xcodebuild -list단계에서Controllersscheme이 보이는지ControllersTests.swift1개 파일)🤖 Generated with Claude Code