There was an error while loading. Please reload this page.
1 parent 1bacf30 commit e315708Copy full SHA for e315708
2 files changed
.github/workflows/main.yml
@@ -50,6 +50,8 @@ jobs:
50
- name: Tuist generate
51
run: tuist generate
52
53
+ - run: fastlane test
54
+
55
- run: fastlane tf
56
env:
57
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
fastlane/Fastfile
@@ -25,6 +25,14 @@ platform :ios do
25
)
26
end
27
28
+ lane :test do
29
+ scan(
30
+ workspace: "#{APP_NAME}.xcworkspace",
31
+ scheme: "#{SCHEME}",
32
+ devices: ["iPhone 16 Pro"]
33
+ )
34
+ end
35
36
# 테스트 플라이트 업로드
37
desc "Push to TestFlight"
38
lane :tf do |options|
0 commit comments