-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
11a7109
commit aeef829
Showing
4 changed files
with
156 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# workflow 의 이름 | ||
name: Xcode Test | ||
|
||
on: | ||
# Epic 브랜치에 push 나 pull request 이벤트가 일어났을때 해당 workflow 를 trigger | ||
push: | ||
branches: [ '**/epic/iOS/**' ] | ||
pull_request: | ||
branches: [ '**/epic/iOS/**' ] | ||
|
||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
|
||
steps: | ||
# uses 키워드를 통해 Github Actions에서 기본으로 제공하는 액션을 사용 가능. 아래 액션은 repository 에 체크아웃하는 것 | ||
- uses: actions/checkout@v2 | ||
# shell 이용해서 하나의 command 수행 | ||
- name: 🛠 Start xcode build | ||
run: | | ||
xcodebuild clean test -project iOS/MaybeGamsung/MaybeGamsung.xcodeproj -scheme MaybeGamsung -destination 'platform=iOS Simulator,name=iPhone 11 Pro,OS=latest' |
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
Binary file modified
BIN
+4.51 KB
(140%)
...roj/project.xcworkspace/xcuserdata/nomatterjun.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
12 changes: 12 additions & 0 deletions
12
iOS/MaybeGamsung/MaybeGamsungTests/MaybeGamsungTests.swift
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// | ||
// MaybeGamsungTests.swift | ||
// MaybeGamsungTests | ||
// | ||
// Created by 이창준 on 11/9/23. | ||
// | ||
|
||
import XCTest | ||
|
||
final class MaybeGamsungTests: XCTestCase { | ||
func testExample() throws {} | ||
} |