Skip to content

Documentation update, updated version to 2.2.0 #89

Documentation update, updated version to 2.2.0

Documentation update, updated version to 2.2.0 #89

Workflow file for this run

name: build
on: [push]
jobs:
build_job: # job name
runs-on: ubuntu-22.04
steps:
- name: Use JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
# here the actual build starts
- name: Standard Checkout
uses: actions/[email protected]
- name: Build with Maven
run: mvn -B verify
- name: Upload JaCoCo coverage report
uses: actions/[email protected]
with:
name: jacoco-report
path: aggregate-report/target/site/jacoco-aggregate/
- name: Generate JaCoCo Badge
if: github.ref == 'refs/heads/develop'
id: jacoco
uses: cicirello/[email protected]
with:
generate-branches-badge: true
- name: Log coverage percentage
if: github.ref == 'refs/heads/develop'
run: |
echo "coverage = ${{ steps.jacoco.outputs.coverage }}"
echo "branch coverage = ${{ steps.jacoco.outputs.branches }}"
- name: Commit and push the badge (if it changed)
if: github.ref == 'refs/heads/develop'
uses: EndBug/[email protected]
with:
default_author: github_actions
message: 'Autogenerated JaCoCo coverage badge'
add: '*.svg'