Skip to content

Commit

Permalink
feat : 테스트 커밋(#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhoon227 committed Jan 21, 2024
1 parent 09cc4b4 commit 79fc1f9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/action-test-ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: test-ci

// 트리거 조건 (push 하거나 PR 하면 하단의 jobs를 실행하겠다는 뜻)
# 트리거 조건 (push 하거나 PR 하면 하단의 jobs를 실행하겠다는 뜻)
on:
push:
branches:
Expand All @@ -13,10 +13,10 @@ on:
- develop


// 트리거 발생 시 실행할 작업들
# 트리거 발생 시 실행할 작업들
jobs:
test:
runs-on: macos-latest // iOS 플랫폼에서 실행
runs-on: macos-latest # iOS 플랫폼에서 실행

steps:
- name: Checkout respository
Expand All @@ -28,6 +28,6 @@ jobs:
xcodebuild clean test -workspace KCS/KCS.xcworkspace \
-scheme KCS \
-destination 'platform=iOS Simulator,name=iPhone 15,OS=latest'
// CocoaPod 을 사용하므로 설치후 테스트 진행
// ❗-project 옵션으로 scheme 설정
// ❗-destination 옵션으로 OS 버전이 설정
# CocoaPod 을 사용하므로 설치후 테스트 진행
# ❗-project 옵션으로 scheme 설정
# ❗-destination 옵션으로 OS 버전이 설정

0 comments on commit 79fc1f9

Please sign in to comment.