Feature/cid 1751 fetch and publish repos #32
Workflow file for this run
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
name: vsm-gitlab-broker-code-coverage | |
concurrency: | |
group: vsm-gitlab-broker-code-coverage-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
vsm-gitlab-broker-connector-ci: | |
name: Build and test VSM GitLab Broker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: LeanIX Secrets 🔒 | |
uses: leanix/secrets-action@master | |
with: | |
secret-store-credentials: ${{ secrets.INJECTED_SECRET_STORE_CREDENTIALS }} | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@v2 | |
id: gradle-build | |
continue-on-error: false | |
with: | |
arguments: build | |
build-root-directory: . | |
- name: Add coverage to PR | |
id: jacoco | |
uses: madrapps/jacoco-report@v1.3 | |
with: | |
paths: ${{ github.workspace }}/build/jacocoXml/jacocoTestReport.xml | |
token: ${{secrets.GITHUB_TOKEN}} | |
min-coverage-overall: 40 | |
min-coverage-changed-files: 60 | |
title: VSM GitLab Broker Code Coverage | |
update-comment: true | |
- name: Get the Coverage info | |
run: | | |
echo "Total coverage ${{ steps.jacoco.outputs.coverage-overall }}" | |
echo "Changed Files coverage ${{ steps.jacoco.outputs.coverage-changed-files }}" |