Skip to content

Commit

Permalink
Merge pull request #6 from Cofinity-X/sync/upstream-2024-03-29
Browse files Browse the repository at this point in the history
Sync/upstream 2024 03 29
  • Loading branch information
PManaras authored Mar 19, 2024
2 parents 287b61d + f4f93eb commit 241d407
Show file tree
Hide file tree
Showing 85 changed files with 6,116 additions and 2,669 deletions.
66 changes: 66 additions & 0 deletions .github/workflows/app-test-coverage-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# /********************************************************************************
# * Copyright (c) 2023 Contributors to the Eclipse Foundation
# *
# * See the NOTICE file(s) distributed with this work for additional
# * information regarding copyright ownership.
# *
# * This program and the accompanying materials are made available under the
# * terms of the Apache License, Version 2.0 which is available at
# * https://www.apache.org/licenses/LICENSE-2.0.
# *
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# * License for the specific language governing permissions and limitations
# * under the License.
# *
# * SPDX-License-Identifier: Apache-2.0
# ********************************************************************************/

name: Application test and coverage -- PR context

on:
pull_request:
paths:
- 'src/**'

jobs:
test-app:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Java 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'

- name: Test app
run: ./gradlew test

- name: Get coverage
if: always()
run: ./gradlew jacocoTestReport

- name: Upload test results
uses: actions/upload-artifact@v3
if: always()
with:
name: test-results
path: ${{ github.workspace }}/build/

- name: Publish code coverage report as PR comment
uses: madrapps/jacoco-report@v1.6.1
if: always()
with:
paths: |
${{ github.workspace }}/build/reports/xml/jacoco.xml
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 80
min-coverage-changed-files: 80
title: Coverage Report
68 changes: 68 additions & 0 deletions .github/workflows/app-test-coverage-repo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# /********************************************************************************
# * Copyright (c) 2023 Contributors to the Eclipse Foundation
# *
# * See the NOTICE file(s) distributed with this work for additional
# * information regarding copyright ownership.
# *
# * This program and the accompanying materials are made available under the
# * terms of the Apache License, Version 2.0 which is available at
# * https://www.apache.org/licenses/LICENSE-2.0.
# *
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# * License for the specific language governing permissions and limitations
# * under the License.
# *
# * SPDX-License-Identifier: Apache-2.0
# ********************************************************************************/

name: Application test and coverage -- Repository context

on:
workflow_run:
workflows: [ 'Application test and coverage -- PR context' ]
types:
- completed

permissions:
contents: read
actions: read
checks: write

jobs:
test-app:
runs-on: ubuntu-latest

steps:
- name: Download test results
uses: actions/download-artifact@v3
with:
name: test-results
path: ${{ github.workspace }}/

- name: Setup .NET Core # Required to execute ReportGenerator
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.x
dotnet-quality: 'ga'

- name: Generate test report
uses: dorny/test-reporter@v1.6.0
with:
name: Test results
path: 'test-results/test/*.xml'
reporter: java-junit
fail-on-error: false

- name: Create Markdown from code coverage report
uses: danielpalme/ReportGenerator-GitHub-Action@5.1.25
with:
reports: reports/xml/jacoco.xml
targetdir: coveragereport
reporttypes: MarkdownSummaryGithub
sourcedirs: src/main/java
title: 'Code Coverage'

- name: Publish Markdown code coverage report as job summary
run: cat coveragereport/SummaryGithub.md >> $GITHUB_STEP_SUMMARY
101 changes: 0 additions & 101 deletions .github/workflows/app-test-coverage.yml

This file was deleted.

125 changes: 0 additions & 125 deletions .github/workflows/chart-lint-test.yml

This file was deleted.

Loading

0 comments on commit 241d407

Please sign in to comment.