Skip to content

Bump org.jetbrains.dokka from 1.9.20 to 2.0.0 (#8) #20

Bump org.jetbrains.dokka from 1.9.20 to 2.0.0 (#8)

Bump org.jetbrains.dokka from 1.9.20 to 2.0.0 (#8) #20

Workflow file for this run

name: 'Test Lib'
on:
pull_request:
push:
branches:
- main
workflow_call:
permissions:
checks: write
jobs:
unitTest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Gradle
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
~/.gradle/jdks
key: gradle-caches-unit-test-v0-${{ hashFiles('gradle/libs.versions.toml', 'build.gradle.kts', 'settings.gradle.kts', 'gradle/wrapper/gradle-wrapper.properties') }}
- name: Run jvm unit tests
run: ./gradlew jvmTest
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: success() || failure()
with:
check_name: Unit Test Report
report_paths: 'build/test-results/jvmTest/TEST-*.xml'