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.
1 parent 1bacf30 commit 841f4fcCopy full SHA for 841f4fc
.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,15 @@ platform :ios do
25
)
26
end
27
28
+ lane :test do
29
+ ENV["FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT"] = "120"
30
+ scan(
31
+ workspace: "#{APP_NAME}.xcworkspace",
32
+ scheme: "#{SCHEME}",
33
+ devices: ["iPhone 16 Pro"]
34
+ )
35
+ end
36
37
# 테스트 플라이트 업로드
38
desc "Push to TestFlight"
39
lane :tf do |options|
0 commit comments