Doc: Update README.md #20
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 build-for-testing -project CamPlace/CamPlace.xcodeproj \ | |
-scheme CamPlace \ | |
-destination 'platform=iOS Simulator,name=iPhone 13,OS=latest' \ | |
CODE_SIGNING_ALLOWED=NO \ | |
CODE_SIGN_IDENTITY="" \ | |
PROVISIONING_PROFILE_SPECIFIER="" \ | |
OTHER_CODE_SIGN_FLAGS="--deep" | |
- name: Run tests | |
run: | | |
xcodebuild test-without-building \ | |
-project CamPlace/CamPlace.xcodeproj \ | |
-scheme CamPlace \ | |
-destination 'platform=iOS Simulator,name=iPhone 13,OS=latest' |