CID-2777: Secure webhook listener endpoint #61
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: leanix-github-agent-code-coverage | |
concurrency: | |
group: leanix-github-agent-code-coverage-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
leanix-github-agent-connector-ci: | |
name: Build and test LeanIX GitHub Agent | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- 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: LeanIX GitHub Agent 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 }}" |