Skip to content

Commit

Permalink
Update gradle version & test task
Browse files Browse the repository at this point in the history
  • Loading branch information
husnjaktv committed Jul 16, 2024
1 parent f2a6af3 commit e8f96b4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,3 @@ jobs:
client_secret: "${{ secrets.CLIENT_SECRET }}"
bearer: "${{ secrets.BEARER_TOKEN }}"
ORG_GRADLE_PROJECT_version: Build-${{ github.run_id }}"
- name: Execute Gradle test
run: ./gradlew test --no-daemon
env:
client_id: "${{ secrets.CLIENT_ID }}"
client_secret: "${{ secrets.CLIENT_SECRET }}"
bearer: "${{ secrets.BEARER_TOKEN }}"
ORG_GRADLE_PROJECT_version: Build-${{ github.run_id }}"
7 changes: 7 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,13 @@ tasks {
compileTestKotlin {
kotlinOptions.jvmTarget = JavaVersion.VERSION_17.toString()
}
test {
useJUnitPlatform()
testLogging {
events("passed", "skipped", "failed")
}
}

dokkaJavadoc {
outputDirectory.set(buildDir.resolve("javadoc"))
dependsOn(getTasksByName("generateProto", true))
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit e8f96b4

Please sign in to comment.