We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 761c91d commit 628a619Copy full SHA for 628a619
.github/workflows/ci.yml
@@ -27,8 +27,8 @@ jobs:
27
working-directory: ./codegen-test
28
run: chmod +x gradlew
29
30
- - name: Build plugin
31
- run: ./gradlew build
+ - name: Assemble and Check
+ run: ./gradlew assemble check
32
33
- name: Test plugin (generate Java code)
34
codegen/build.gradle.kts
@@ -66,8 +66,12 @@ tasks {
66
test {
67
useJUnitPlatform()
68
}
69
-
+
70
groovydoc {
71
enabled = false
72
73
74
+ build {
75
+ dependsOn(spotlessApply)
76
+ }
77
0 commit comments