From 78e1139616c4840286258ebdeb022d51876708bd Mon Sep 17 00:00:00 2001 From: Minjae Kim Date: Thu, 7 Dec 2023 15:11:31 +0900 Subject: [PATCH 01/11] Create main.yml --- .github/workflows/main.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..babdea3 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,22 @@ +- uses: kishikawakatsumi/xcresulttool@v1 + with: + path: TestResults.xcresult + if: success() || failure() + # ^ This is important because the action will be run + # even if the test fails in the previous step. +jobs: + test: + runs-on: macos-11 + name: Test + steps: + - uses: actions/checkout@v2 + - name: Test + run: | + xcodebuild -scheme MyFramework -resultBundlePath TestResults test + + - uses: kishikawakatsumi/xcresulttool@v1 + with: + path: TestResults.xcresult + if: success() || failure() + # ^ This is important because the action will be run + # even if the test fails in the previous step. From ba16ac998d0771e3840d624cf8f8135ce6ffb02b Mon Sep 17 00:00:00 2001 From: MINJAE KIM Date: Thu, 7 Dec 2023 15:17:11 +0900 Subject: [PATCH 02/11] test github actions --- SOPTving/SOPTving.xcodeproj/project.pbxproj | 132 +++++++++++++++++- .../xcshareddata/xcschemes/SOPTving.xcscheme | 13 ++ .../Welcome/WelcomeViewController.swift | 3 + SOPTving/SOPTvingTests/SOPTvingTests.swift | 35 +++++ 4 files changed, 182 insertions(+), 1 deletion(-) create mode 100644 SOPTving/SOPTvingTests/SOPTvingTests.swift diff --git a/SOPTving/SOPTving.xcodeproj/project.pbxproj b/SOPTving/SOPTving.xcodeproj/project.pbxproj index 1c7701d..cfcf2ab 100644 --- a/SOPTving/SOPTving.xcodeproj/project.pbxproj +++ b/SOPTving/SOPTving.xcodeproj/project.pbxproj @@ -47,6 +47,7 @@ B598C0FE29E9C58700FDEF04 /* String+.swift in Sources */ = {isa = PBXBuildFile; fileRef = B598C0FD29E9C58700FDEF04 /* String+.swift */; }; B598C10029E9D35E00FDEF04 /* ModuleFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = B598C0FF29E9D35E00FDEF04 /* ModuleFactory.swift */; }; B598C10229E9D60100FDEF04 /* BottomSheetViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B598C10129E9D60100FDEF04 /* BottomSheetViewController.swift */; }; + B5ACF6E62B219AA1006D7641 /* SOPTvingTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5ACF6E52B219AA1006D7641 /* SOPTvingTests.swift */; }; B5D0CAD929FD9D1700D1F271 /* MainHomeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5D0CAD829FD9D1700D1F271 /* MainHomeViewController.swift */; }; B5D0CADB29FDA91100D1F271 /* ImageBannerCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5D0CADA29FDA91100D1F271 /* ImageBannerCollectionViewCell.swift */; }; B5D0CADE29FDAC8000D1F271 /* ScreenUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5D0CADD29FDAC8000D1F271 /* ScreenUtils.swift */; }; @@ -92,6 +93,16 @@ B5F22E732A0D7A90006F5552 /* downloadImageFromURLString.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5F22E722A0D7A90006F5552 /* downloadImageFromURLString.swift */; }; /* End PBXBuildFile section */ +/* Begin PBXContainerItemProxy section */ + B5ACF6E72B219AA1006D7641 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = B598C09F29E8070E00FDEF04 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B598C0A629E8070E00FDEF04; + remoteInfo = SOPTving; + }; +/* End PBXContainerItemProxy section */ + /* Begin PBXFileReference section */ B52FA8EC29FAF4D400AC384B /* HomeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeViewController.swift; sourceTree = ""; }; B52FA8EE29FAF51300AC384B /* NavigationBarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NavigationBarView.swift; sourceTree = ""; }; @@ -134,6 +145,8 @@ B598C0FD29E9C58700FDEF04 /* String+.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+.swift"; sourceTree = ""; }; B598C0FF29E9D35E00FDEF04 /* ModuleFactory.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ModuleFactory.swift; sourceTree = ""; }; B598C10129E9D60100FDEF04 /* BottomSheetViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BottomSheetViewController.swift; sourceTree = ""; }; + B5ACF6E32B219AA1006D7641 /* SOPTvingTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SOPTvingTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + B5ACF6E52B219AA1006D7641 /* SOPTvingTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SOPTvingTests.swift; sourceTree = ""; }; B5D0CAD829FD9D1700D1F271 /* MainHomeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainHomeViewController.swift; sourceTree = ""; }; B5D0CADA29FDA91100D1F271 /* ImageBannerCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageBannerCollectionViewCell.swift; sourceTree = ""; }; B5D0CADD29FDAC8000D1F271 /* ScreenUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScreenUtils.swift; sourceTree = ""; }; @@ -188,6 +201,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B5ACF6E02B219AA1006D7641 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ @@ -231,6 +251,7 @@ isa = PBXGroup; children = ( B598C0A929E8070E00FDEF04 /* SOPTving */, + B5ACF6E42B219AA1006D7641 /* SOPTvingTests */, B598C0A829E8070E00FDEF04 /* Products */, ); sourceTree = ""; @@ -239,6 +260,7 @@ isa = PBXGroup; children = ( B598C0A729E8070E00FDEF04 /* SOPTving.app */, + B5ACF6E32B219AA1006D7641 /* SOPTvingTests.xctest */, ); name = Products; sourceTree = ""; @@ -365,6 +387,14 @@ path = Login; sourceTree = ""; }; + B5ACF6E42B219AA1006D7641 /* SOPTvingTests */ = { + isa = PBXGroup; + children = ( + B5ACF6E52B219AA1006D7641 /* SOPTvingTests.swift */, + ); + path = SOPTvingTests; + sourceTree = ""; + }; B5D0CADC29FDAC7500D1F271 /* Utils */ = { isa = PBXGroup; children = ( @@ -592,6 +622,24 @@ productReference = B598C0A729E8070E00FDEF04 /* SOPTving.app */; productType = "com.apple.product-type.application"; }; + B5ACF6E22B219AA1006D7641 /* SOPTvingTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = B5ACF6EB2B219AA1006D7641 /* Build configuration list for PBXNativeTarget "SOPTvingTests" */; + buildPhases = ( + B5ACF6DF2B219AA1006D7641 /* Sources */, + B5ACF6E02B219AA1006D7641 /* Frameworks */, + B5ACF6E12B219AA1006D7641 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + B5ACF6E82B219AA1006D7641 /* PBXTargetDependency */, + ); + name = SOPTvingTests; + productName = SOPTvingTests; + productReference = B5ACF6E32B219AA1006D7641 /* SOPTvingTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ @@ -599,12 +647,16 @@ isa = PBXProject; attributes = { BuildIndependentTargetsInParallel = 1; - LastSwiftUpdateCheck = 1420; + LastSwiftUpdateCheck = 1500; LastUpgradeCheck = 1420; TargetAttributes = { B598C0A629E8070E00FDEF04 = { CreatedOnToolsVersion = 14.2; }; + B5ACF6E22B219AA1006D7641 = { + CreatedOnToolsVersion = 15.0.1; + TestTargetID = B598C0A629E8070E00FDEF04; + }; }; }; buildConfigurationList = B598C0A229E8070E00FDEF04 /* Build configuration list for PBXProject "SOPTving" */; @@ -627,6 +679,7 @@ projectRoot = ""; targets = ( B598C0A629E8070E00FDEF04 /* SOPTving */, + B5ACF6E22B219AA1006D7641 /* SOPTvingTests */, ); }; /* End PBXProject section */ @@ -650,6 +703,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B5ACF6E12B219AA1006D7641 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ @@ -728,8 +788,24 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B5ACF6DF2B219AA1006D7641 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B5ACF6E62B219AA1006D7641 /* SOPTvingTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXSourcesBuildPhase section */ +/* Begin PBXTargetDependency section */ + B5ACF6E82B219AA1006D7641 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = B598C0A629E8070E00FDEF04 /* SOPTving */; + targetProxy = B5ACF6E72B219AA1006D7641 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + /* Begin PBXVariantGroup section */ B598C0B529E8070F00FDEF04 /* LaunchScreen.storyboard */ = { isa = PBXVariantGroup; @@ -918,6 +994,51 @@ }; name = Release; }; + B5ACF6E92B219AA1006D7641 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 17.0; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = minjae.SOPTvingTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SOPTving.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/SOPTving"; + }; + name = Debug; + }; + B5ACF6EA2B219AA1006D7641 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 17.0; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = minjae.SOPTvingTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SOPTving.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/SOPTving"; + }; + name = Release; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -939,6 +1060,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + B5ACF6EB2B219AA1006D7641 /* Build configuration list for PBXNativeTarget "SOPTvingTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B5ACF6E92B219AA1006D7641 /* Debug */, + B5ACF6EA2B219AA1006D7641 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; /* End XCConfigurationList section */ /* Begin XCRemoteSwiftPackageReference section */ diff --git a/SOPTving/SOPTving.xcodeproj/xcshareddata/xcschemes/SOPTving.xcscheme b/SOPTving/SOPTving.xcodeproj/xcshareddata/xcschemes/SOPTving.xcscheme index 6786803..09999a8 100644 --- a/SOPTving/SOPTving.xcodeproj/xcshareddata/xcschemes/SOPTving.xcscheme +++ b/SOPTving/SOPTving.xcodeproj/xcshareddata/xcschemes/SOPTving.xcscheme @@ -28,6 +28,19 @@ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" shouldUseLaunchSchemeArgsEnv = "YES" shouldAutocreateTestPlan = "YES"> + + + + + + Date: Thu, 7 Dec 2023 15:18:43 +0900 Subject: [PATCH 03/11] Update main.yml --- .github/workflows/main.yml | 44 ++++++++++++++++++++------------------ 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index babdea3..05a61ca 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,22 +1,24 @@ -- uses: kishikawakatsumi/xcresulttool@v1 - with: - path: TestResults.xcresult - if: success() || failure() - # ^ This is important because the action will be run - # even if the test fails in the previous step. -jobs: - test: - runs-on: macos-11 - name: Test - steps: - - uses: actions/checkout@v2 - - name: Test - run: | - xcodebuild -scheme MyFramework -resultBundlePath TestResults test +name: Test + on: + pull_request: + branches: [main] + push: + branches: [main] + workflow_dispatch: - - uses: kishikawakatsumi/xcresulttool@v1 - with: - path: TestResults.xcresult - if: success() || failure() - # ^ This is important because the action will be run - # even if the test fails in the previous step. + jobs: + test: + runs-on: macos-11 + name: Test + steps: + +uses: actions/checkout@v2 +name: Test + run: | + set -ex + sudo xcode-select -s /Applications/Xcode_15.0.1.app + xcodebuild test -scheme 'SOPTvingTests' \-destination "platform=iOS Simulator,name=iPhone 13" \-resultBundlePath TestResults.xcresult +uses: kishikawakatsumi/xcresulttool@v1 + with: + path: TestResults.xcresult + if: success() || failure() From 4cd216c8dde9ce6050d272310314506e19e430db Mon Sep 17 00:00:00 2001 From: MINJAE KIM Date: Thu, 7 Dec 2023 15:19:15 +0900 Subject: [PATCH 04/11] test github actions2 --- .../xcschemes/SOPTvingTests.xcscheme | 54 +++++++++++++++++++ .../Welcome/WelcomeViewController.swift | 3 -- 2 files changed, 54 insertions(+), 3 deletions(-) create mode 100644 SOPTving/SOPTving.xcodeproj/xcshareddata/xcschemes/SOPTvingTests.xcscheme diff --git a/SOPTving/SOPTving.xcodeproj/xcshareddata/xcschemes/SOPTvingTests.xcscheme b/SOPTving/SOPTving.xcodeproj/xcshareddata/xcschemes/SOPTvingTests.xcscheme new file mode 100644 index 0000000..f451357 --- /dev/null +++ b/SOPTving/SOPTving.xcodeproj/xcshareddata/xcschemes/SOPTvingTests.xcscheme @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/SOPTving/SOPTving/Presentation/Welcome/WelcomeViewController.swift b/SOPTving/SOPTving/Presentation/Welcome/WelcomeViewController.swift index fa408ff..0360c40 100644 --- a/SOPTving/SOPTving/Presentation/Welcome/WelcomeViewController.swift +++ b/SOPTving/SOPTving/Presentation/Welcome/WelcomeViewController.swift @@ -60,9 +60,6 @@ private extension WelcomeViewController { } func style() { - - - view.backgroundColor = .tvingBlack } From f2b10786c07b47ce686344c37356b60a6e31de87 Mon Sep 17 00:00:00 2001 From: Minjae Kim Date: Thu, 7 Dec 2023 15:23:50 +0900 Subject: [PATCH 05/11] Update main.yml --- .github/workflows/main.yml | 47 ++++++++++++++++++++------------------ 1 file changed, 25 insertions(+), 22 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 05a61ca..c6758a1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,24 +1,27 @@ name: Test - on: - pull_request: - branches: [main] - push: - branches: [main] - workflow_dispatch: +on: + pull_request: + branches: [main] + push: + branches: [main] + workflow_dispatch: - jobs: - test: - runs-on: macos-11 - name: Test - steps: - -uses: actions/checkout@v2 -name: Test - run: | - set -ex - sudo xcode-select -s /Applications/Xcode_15.0.1.app - xcodebuild test -scheme 'SOPTvingTests' \-destination "platform=iOS Simulator,name=iPhone 13" \-resultBundlePath TestResults.xcresult -uses: kishikawakatsumi/xcresulttool@v1 - with: - path: TestResults.xcresult - if: success() || failure() +jobs: + test: + runs-on: macos-11 + name: Test + steps: + - uses: actions/checkout@v2 + - name: Test + run: | + set -ex + sudo xcode-select -s /Applications/Xcode_15.0.1.app + + xcodebuild test -scheme 'SOPTvingTests' \ + -destination "platform=iOS Simulator,name=iPhone 13" \ + -resultBundlePath TestResults.xcresult + + - uses: kishikawakatsumi/xcresulttool@v1 + with: + path: TestResults.xcresult + if: success() || failure() From b009851c18b5b448e8b47977a3b89a6f61f8717b Mon Sep 17 00:00:00 2001 From: Minjae Kim Date: Thu, 7 Dec 2023 15:28:31 +0900 Subject: [PATCH 06/11] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c6758a1..afe9010 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: - name: Test run: | set -ex - sudo xcode-select -s /Applications/Xcode_15.0.1.app + sudo xcode-select -s /Applications/Xcode_15.0.app xcodebuild test -scheme 'SOPTvingTests' \ -destination "platform=iOS Simulator,name=iPhone 13" \ From 7f7c694a999b5deac872e7218d9d2400656c39ce Mon Sep 17 00:00:00 2001 From: Minjae Kim Date: Thu, 7 Dec 2023 15:29:18 +0900 Subject: [PATCH 07/11] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index afe9010..8b9394e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: - name: Test run: | set -ex - sudo xcode-select -s /Applications/Xcode_15.0.app + sudo xcode-select -s /Applications/Xcode.app xcodebuild test -scheme 'SOPTvingTests' \ -destination "platform=iOS Simulator,name=iPhone 13" \ From 0c2af08250811400e8c1379721e0a31c5fb8e75a Mon Sep 17 00:00:00 2001 From: Minjae Kim Date: Thu, 7 Dec 2023 15:34:55 +0900 Subject: [PATCH 08/11] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8b9394e..b6f1dbb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: - name: Test run: | set -ex - sudo xcode-select -s /Applications/Xcode.app + sudo xcode-select -s /Users/minjae/Desktop/StudyProjects/32-SOPT-TVING/SOPTving/Xcode.app xcodebuild test -scheme 'SOPTvingTests' \ -destination "platform=iOS Simulator,name=iPhone 13" \ From 2a91fc1e347e5f8fe823f6b8b2db3131c00bcc3b Mon Sep 17 00:00:00 2001 From: Minjae Kim Date: Thu, 7 Dec 2023 15:39:02 +0900 Subject: [PATCH 09/11] Update main.yml --- .github/workflows/main.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b6f1dbb..40e76f1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,13 +14,8 @@ jobs: - uses: actions/checkout@v2 - name: Test run: | - set -ex - sudo xcode-select -s /Users/minjae/Desktop/StudyProjects/32-SOPT-TVING/SOPTving/Xcode.app - - xcodebuild test -scheme 'SOPTvingTests' \ - -destination "platform=iOS Simulator,name=iPhone 13" \ - -resultBundlePath TestResults.xcresult - + xcodebuild clean test -project /Users/minjae/Desktop/StudyProjects/32-SOPT-TVING/SOPTving/SOPTving.xcodeproj -scheme SOPTvingTests -destination 'platform=iOS Simulator,name=iPhone 11 Pro,OS=14.4' -resultBundlePath TestResults.xcresult + - uses: kishikawakatsumi/xcresulttool@v1 with: path: TestResults.xcresult From b1544ad5ad54b91125199dc6d8f32e3e05246bce Mon Sep 17 00:00:00 2001 From: Minjae Kim Date: Thu, 7 Dec 2023 15:41:23 +0900 Subject: [PATCH 10/11] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 40e76f1..14c6c98 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v2 - name: Test run: | - xcodebuild clean test -project /Users/minjae/Desktop/StudyProjects/32-SOPT-TVING/SOPTving/SOPTving.xcodeproj -scheme SOPTvingTests -destination 'platform=iOS Simulator,name=iPhone 11 Pro,OS=14.4' -resultBundlePath TestResults.xcresult + xcodebuild clean test -project SOPTving/SOPTving.xcodeproj -scheme SOPTvingTests -destination 'platform=iOS Simulator,name=iPhone 11 Pro,OS=14.4' -resultBundlePath TestResults.xcresult - uses: kishikawakatsumi/xcresulttool@v1 with: From dfb2c760da6770419c8e3c0b53c4e18a61d8f5d8 Mon Sep 17 00:00:00 2001 From: MINJAE KIM Date: Thu, 7 Dec 2023 15:41:49 +0900 Subject: [PATCH 11/11] test github actions pr7 --- .../SOPTving/Presentation/Welcome/WelcomeViewController.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SOPTving/SOPTving/Presentation/Welcome/WelcomeViewController.swift b/SOPTving/SOPTving/Presentation/Welcome/WelcomeViewController.swift index 0360c40..43356a5 100644 --- a/SOPTving/SOPTving/Presentation/Welcome/WelcomeViewController.swift +++ b/SOPTving/SOPTving/Presentation/Welcome/WelcomeViewController.swift @@ -60,6 +60,8 @@ private extension WelcomeViewController { } func style() { + + view.backgroundColor = .tvingBlack }