Skip to content

Uitest - 캘린더, 기분 기록, 설정 #188

Uitest - 캘린더, 기분 기록, 설정

Uitest - 캘린더, 기분 기록, 설정 #188

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
build:
name: Build and Test
runs-on: macos-14
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0.1'
- name: Checkout
uses: actions/checkout@v3
- name: Build and Test
run: |
xcodebuild clean -project PlantingMind/PlantingMind.xcodeproj -scheme PlantingMind -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=17.0.1' -resultBundlePath TestResults test
- name: xcresulttool
uses: kishikawakatsumi/xcresulttool@v1.7.1
with:
path: TestResults.xcresult
if: success() || failure()