Skip to content

Bump exposed.version from 0.48.0 to 0.50.1 #202

Bump exposed.version from 0.48.0 to 0.50.1

Bump exposed.version from 0.48.0 to 0.50.1 #202

Workflow file for this run

name: Pull Requests Checks
on:
pull_request:
branches: [ "dev" ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
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