File tree 2 files changed +3
-2
lines changed
modulecheck-core/src/main/kotlin/modulecheck/core
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ import kotlin.system.measureTimeMillis
32
32
* [FindingResult][modulecheck.api.Finding.FindingResult]
33
33
* @param reportFactory handles console output of the results
34
34
*/
35
+ @Suppress(" LongParameterList" )
35
36
class ModuleCheckRunner (
36
37
val autoCorrect : Boolean ,
37
38
val settings : ModuleCheckSettings ,
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ flowchart TB
39
39
40
40
subgraph mGraph [runner 1]
41
41
direction TB
42
- ModuleCheck(./gradlew moduleCheckApply ):::code --> ChangesModuleCheck
42
+ ModuleCheck(./gradlew moduleCheckAuto ):::code --> ChangesModuleCheck
43
43
ChangesModuleCheck{Graph changes?} --- yesM[yes]:::lineLabel --> CommitModuleCheck(Commit changes and push):::stop
44
44
ChangesModuleCheck --- noM[no]:::lineLabel --> EndModuleCheck("#10003;"):::good
45
45
end
@@ -113,7 +113,7 @@ jobs:
113
113
114
114
# performs tree-shaking on the Gradle dependency graph
115
115
- name : modulecheck
116
- run : ./gradlew moduleCheckApply --no-daemon
116
+ run : ./gradlew moduleCheckAuto --no-daemon
117
117
118
118
# If ModuleCheck generated changes, commit and push those changes.
119
119
# If there are no changes, then this is a no-op.
You can’t perform that action at this time.
0 commit comments