Merge branch 'develop' #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Java CI with Maven | |
on: | |
push: | |
branches: [ master,develop ] | |
pull_request: | |
branches: [ master,develop ] | |
jobs: | |
maven-build-backage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Maven | |
run: mvn clean package -DskipTests --file pom.xml | |
jacoco-corverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Maven | |
run: mvn clean -B test | |
- name: Generate JaCoCo Badge | |
uses: cicirello/jacoco-badge-generator@v2 | |
with: | |
generate-branches-badge: false | |
jacoco-csv-file: target/site/jacoco/jacoco.csv | |
- name: Commit and push the badge (if it changed) | |
uses: EndBug/add-and-commit@v7 | |
with: | |
default_author: github_actions | |
message: 'commit badge' | |
add: '*.svg' | |
- name: Jacoco Report to PR | |
id: jacoco | |
uses: madrapps/jacoco-report@v1.6.1 | |
with: | |
paths: target/site/jacoco/jacoco.xml | |
token: ${{ secrets.GITHUB_TOKEN }} | |
min-coverage-overall: 40 | |
min-coverage-changed-files: 60 | |
debug-mode: false | |
- name: Upload coverage report | |
uses: actions/upload-artifact@v2.2.3 | |
with: | |
name: coverage-results-report | |
path: target/site/jacoco/ | |
- name: JaCoCo Code Coverage Report | |
id: jacoco_reporter | |
uses: PavanMudigonda/jacoco-reporter@v4.8 | |
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: 0 | |
fail_below_threshold: false | |
publish_only_summary: false | |
- name: Upload Code Coverage Artifacts | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: code-coverage-report-markdown | |
path: "*/coverage-results.md" | |
- name: Get the Coverage info | |
run: | | |
echo "Total coverage ${{ steps.jacoco.outputs.coverage-overall }}" | |
echo "Changed Files coverage ${{ steps.jacoco.outputs.coverage-changed-files }}" |