감정 기록 화면에서 저장할 때 update가 아닌 새로 저장되고 있던 로직 수정 #108
Workflow file for this run
This file contains 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
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() | |