Skip to content

Commit

Permalink
Chore: spotless test 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
WonSteps committed Jul 20, 2024
1 parent ee6b9d5 commit 5a2636a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
uses: gradle/actions/setup-gradle@v3

- name: Test with Gradle
run: ./gradlew clean test --stacktrace --parallel
run: ./gradlew projectTest --stacktrace --parallel
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,9 @@ tasks.register<Exec>("makeGitHooksExecutable") {
tasks.compileJava {
dependsOn("makeGitHooksExecutable")
}

tasks.register("projectTest") {
dependsOn("spotlessJavaCheck")
dependsOn("compileJava")
dependsOn("test")
}

0 comments on commit 5a2636a

Please sign in to comment.