Fix skiped ktlint checks in qa task.

This commit is contained in:
Cody Henthorne
2026-03-09 11:01:45 -04:00
committed by jeffrey-signal
parent d18c5a7fad
commit ac9405e874

View File

@@ -91,6 +91,11 @@ gradle.projectsEvaluated {
appTestTask?.let { dependsOn(it) }
appLintTask?.let { dependsOn(it) }
// All subproject ktlint checks
subprojects.forEach { subproject ->
subproject.tasks.findByName("ktlintCheck")?.let { dependsOn(it) }
}
// Library module tasks
subprojects.filter { it.name != "Signal-Android" }.forEach { subproject ->
val testTask = subproject.tasks.findByName("testDebugUnitTest")