Skip to content

Bump org.jetbrains.dokka:dokka-maven-plugin from 1.9.10 to 1.9.20 (#173) #102

Bump org.jetbrains.dokka:dokka-maven-plugin from 1.9.10 to 1.9.20 (#173)

Bump org.jetbrains.dokka:dokka-maven-plugin from 1.9.10 to 1.9.20 (#173) #102

Workflow file for this run

name: Build and Tests
on:
push:
branches: [ "dev" ]
workflow_dispatch:
concurrency:
group: "dev"
cancel-in-progress: true
permissions:
checks: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Java JDK
uses: actions/[email protected]
with:
java-version: '17'
distribution: 'zulu'
cache: 'maven'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots test
- name: JaCoCo Code Coverage Report
uses: PavanMudigonda/[email protected]
with:
coverage_results_path: target/site/jacoco/jacoco.xml
coverage_report_name: Coverage
coverage_report_title: JaCoCo
github_token: ${{ secrets.GITHUB_TOKEN }}
skip_check_run: false
minimum_coverage: 80
fail_below_threshold: true
publish_only_summary: false