Feat/#122 위치 권한 검사 및 권한설정 유도 팝업창 설정 #49
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
# This workflow will build a Swift project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift | |
name: Build Test | |
on: | |
push: | |
branches: [ "develop" ] | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- name: Code Checkout ✔️ | |
uses: actions/checkout@v3 | |
- name: Xcode Version Settings ⚙️ | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: "15.0.1" | |
- name: Start Xcode build test 🏗️ | |
run: | | |
cd Reet-Place | |
pod install --repo-update --clean-install | |
xcodebuild build -workspace Reet-Place.xcworkspace -scheme Reet-Place -destination 'platform=iOS Simulator,name=iPhone 11 Pro,OS=latest' CODE_SIGNING_ALLOWED=No |