From be23c6c37f1030ac744be5eeead6df47e15f6d3e Mon Sep 17 00:00:00 2001 From: DEV_Ruel <67133244+iOS-Ruel@users.noreply.github.com> Date: Tue, 27 Aug 2024 01:03:55 +0900 Subject: [PATCH] Update swift.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 스크립트 재수정 --- .github/workflows/swift.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index b150c6a..9489280 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -25,7 +25,16 @@ jobs: - name: Build Xcode run: | - xcodebuild clean test -project CamPlace/CamPlace.xcodeproj \ + 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="" + + - name: Run tests + run: | + xcodebuild test-without-building \ + -project CamPlace/CamPlace.xcodeproj \ -scheme CamPlace \ -destination 'platform=iOS Simulator,name=iPhone 13,OS=latest' - CODE_SIGNING_ALLOWED=NO