Update swift.yml #12
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: Run Test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create API_KEY.xcconfig file | |
run: | | |
mkdir -p CamPlace | |
echo "API_KEY=${{ secrets.API_KEY }}" > CamPlace/API_KEY.xcconfig | |
cat CamPlace/API_KEY.xcconfig # 파일이 제대로 생성되었는지 확인 왜 안됍니까ㅜ | |
- name: Build Xcode | |
run: | | |
xcodebuild clean test -project CamPlace/CamPlace.xcodeproj \ | |
-scheme CamPlace \ | |
-destination 'platform=iOS Simulator,name=iPhone 13,OS=latest' | |
CODE_SIGNING_ALLOWED=NO |