From 4d652304764a35dd0ef7f6fda819da1453216742 Mon Sep 17 00:00:00 2001 From: David Perez Date: Fri, 12 Jul 2024 16:23:28 -0500 Subject: [PATCH] Update the detekt command for fastlane to cover more of the app (#3462) --- fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index e05ecbd44f..ec3f299fc0 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -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