Skip to content

Commit 7a8a1ea

Browse files
fixed typo in the fastfile, added coverage files
1 parent 985e66e commit 7a8a1ea

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed

codecov.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
ignore:
2+
- "StreamChatSwiftUITests/**/*"
3+
- "**/*_Tests.swift"
4+
- "**/*_Mock.swift"
5+
- "**/*_Vendor.swift"
6+
- "**/Generated/*.swift"
7+
github_checks:
8+
annotations: false

fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ end
9595

9696
def build_example_app(scheme, options)
9797
scan(
98-
project: "StreamChatSwifUI.xcodeproj",
98+
project: "StreamChatSwiftUI.xcodeproj",
9999
scheme: scheme,
100100
clean: true,
101101
build_for_testing: true,

fastlane/Scanfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# For more information about this configuration visit
2+
# https://docs.fastlane.tools/actions/scan/#scanfile
3+
4+
# In general, you can use the options available
5+
# fastlane scan --help
6+
7+
devices(["iPhone 11"])
8+
9+
# Needed for codecov
10+
code_coverage(true)
11+
12+
# Our integration tests need to run in parallel
13+
disable_concurrent_testing(true)
14+
15+
configuration("Debug")
16+
17+
result_bundle(true)
18+
19+
skip_slack(true)

0 commit comments

Comments
 (0)