Skip to content

Bump actions/setup-java from 4.0.0 to 4.1.0 (#168) #107

Bump actions/setup-java from 4.0.0 to 4.1.0 (#168)

Bump actions/setup-java from 4.0.0 to 4.1.0 (#168) #107

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