Skip to content

[2.1.0] 쿠링봇 UI 구현 #318

[2.1.0] 쿠링봇 UI 구현

[2.1.0] 쿠링봇 UI 구현 #318

name: 쿠링 앱타겟 iOS17에서 테스트하기
on:
issue_comment:
types: [created, edited]
jobs:
build:
if: github.event.issue.pull_request && contains(github.event.comment.body, '/쿠링') && contains(github.event.comment.body, 'ios17 앱 테스트')
runs-on: macos-13 #최신버전
steps:
# 테스트 요청 시작
- name: Test iOS17
run: |
echo "iOS17 에서 앱 타겟을 테스트 합니다."
# iOS17 테스트 응답 커멘트
- name: Add Test comment
uses: actions/github-script@v5
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '🔨 iOS 17 iPhone 14 Pro 에서 쿠링 앱을 테스트 합니다.'
})
# 코드를 체크아웃 합니다.
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: refs/pull/${{ github.event.issue.number }}/head
# Xcode 버전을 설정합니다.
- name: Setup Xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0'
# KuringApp 스킴을 테스트합니다.
- name: KuringApp 테스트
run: |
cd KuringApp
xcodebuild clean test -scheme KuringApp -destination 'platform=iOS Simulator,OS=latest,name=iPhone 14 Pro' -skipMacroValidation
# 테스트 성공시 커멘트
- name: Add Build comment
uses: actions/github-script@v5
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '✅ iOS17 에서 앱 타겟을 성공적으로 테스트 했습니다.'
})
# 테스트 실패시 커멘트
- name: Notify failure
uses: actions/github-script@v5
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '📬 iOS17 에서 앱 타겟 테스트에 실패했습니다. Actions에서 실패 결과를 확인해주세요.'
})
if: failure()