We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aeda85c + 74afa71 commit 111426dCopy full SHA for 111426d
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,24 @@
1
+name: Build Test
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - dev
7
8
+jobs:
9
+ Build:
10
+ runs-on: macos-15
11
12
+ steps:
13
+ # 저장소의 코드를 체크아웃
14
+ - name: Checkout project
15
+ uses: actions/checkout@v4
16
17
+ - name: Start xcode build 🛠
18
+ run: |
19
+ xcodebuild \
20
+ -project GimiFeedback/GimiFeedback.xcodeproj \
21
+ -scheme GimiFeedback \
22
+ -sdk iphonesimulator \
23
+ -skipPackagePluginValidation \
24
+ clean build
0 commit comments