Skip to content

Commit 6848261

Browse files
committed
Fix tests not running
1 parent 8a83ca0 commit 6848261

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,12 @@ tasks {
133133

134134
val publishDevelop by registering {
135135
group = "publishing"
136+
dependsOn(check)
136137
dependsOn(withType<PublishToMavenRepository>().matching { it.repository.name.endsWith("-develop") })
137138
}
138139
val publishRelease by registering {
139140
group = "publishing"
141+
dependsOn(check)
140142
dependsOn(withType<PublishToMavenRepository>().matching { it.repository.name.endsWith("-release") })
141143
}
142144
val release by registering {

0 commit comments

Comments
 (0)