Compare commits

...

1 Commits

Author SHA1 Message Date
JP Simard cd8961a807
Local rules_xcodeproj 2022-09-27 12:09:39 -04:00
1 changed files with 7 additions and 2 deletions

9
BUILD
View File

@ -4,7 +4,7 @@ load(
"swift_library",
)
load(
"@com_github_buildbuddy_io_rules_xcodeproj//xcodeproj:xcodeproj.bzl",
"@com_github_buildbuddy_io_rules_xcodeproj//xcodeproj:defs.bzl",
"xcode_schemes",
"xcodeproj",
)
@ -97,7 +97,12 @@ xcodeproj(
schemes = [
xcode_schemes.scheme(
name = "SwiftLint",
launch_action = xcode_schemes.launch_action("//:swiftlint"),
launch_action = xcode_schemes.launch_action(
"swiftlint",
args = [
"--progress",
],
),
test_action = xcode_schemes.test_action([
"//Tests:SwiftLintFrameworkTests",
"//Tests:ExtraRulesTests",