Update the detekt command for fastlane to cover more of the app (#3462)

This commit is contained in:
David Perez 2024-07-12 16:23:28 -05:00 committed by GitHub
parent 20d37e2f90
commit 4d65230476
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -108,7 +108,7 @@ platform :android do
desc "Runs Standard Debug tests and generates Kover report"
lane :check do
gradle(
tasks: ["testStandardDebug", "lintStandardDebug", "detektStandardDebug", "koverXmlReportStandardDebug"]
tasks: ["testStandardDebug", "lintStandardDebug", "detekt", "koverXmlReportStandardDebug"]
)
end