Skip to content

Commit 2e4de3b

Browse files
runningcodeclaude
andauthored
fix: Include root project check in preMerge task (#1006)
The preMerge task was not running the root project's :check task, which meant spotlessCheck was not being executed on the root project's .kts files in CI workflows. This adds the root :check task as a dependency to ensure all verification tasks run consistently. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <noreply@anthropic.com>
1 parent e4f7aa6 commit 2e4de3b

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ tasks.register("integrationTest") {
5959
tasks.register("preMerge") {
6060
description = "Runs all the tests/verification tasks on both top level and included build."
6161

62+
dependsOn(":check")
6263
dependsOn(gradle.includedBuild("sentry-kotlin-compiler-plugin").task(":check"))
6364
dependsOn(
6465
gradle

0 commit comments

Comments
 (0)