[Feature] 근거리 통신 모듈에 URL을 이용한 통신 메서드 추가 #80
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 Test | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
Build: | |
runs-on: macos-latest | |
steps: | |
# 저장소의 코드를 가져옴 | |
- name: Checkout project | |
uses: actions/checkout@v4 | |
# 빌드 가능 여부 확인 | |
- name: Build AirplaIN | |
run: | | |
xcodebuild \ | |
-workspace AirplaIN.xcworkspace \ | |
-scheme AirplaIN \ | |
-configuration Debug \ | |
-sdk iphonesimulator \ | |
clean build |