Skip to content

Commit

Permalink
Remove coverage action
Browse files Browse the repository at this point in the history
  • Loading branch information
pavetok committed Sep 11, 2023
1 parent f62ce68 commit 118fd52
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 42 deletions.
39 changes: 6 additions & 33 deletions .github/workflows/solution-convincing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ jobs:
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# units reporting
- uses: EnricoMi/[email protected]
if: ${{ !cancelled() }}
with:
Expand All @@ -55,22 +54,6 @@ jobs:
files: |
libs/*/target/surefire-reports/TEST-*.xml
apps/*/target/surefire-reports/TEST-*.xml
- uses: madrapps/[email protected]
if: ${{ github.event_name == 'pull_request' && hashFiles(env.JACOCO_UNITS) != '' }}
with:
title: Unit Coverage Report
paths: ${{ env.JACOCO_UNITS }}
token: ${{ secrets.GITHUB_TOKEN }}
update-comment: true
env:
JACOCO_UNITS: .tools/target/coverage/units/jacoco.xml
- uses: actions/[email protected]
if: ${{ !cancelled() }}
with:
name: units-coverage-report
path: .tools/target/coverage/units
if-no-files-found: ignore
# integrations reporting
- uses: EnricoMi/[email protected]
if: ${{ !cancelled() }}
with:
Expand All @@ -84,22 +67,6 @@ jobs:
files: |
libs/*/target/failsafe-reports/TEST-*.xml
apps/*/target/failsafe-reports/TEST-*.xml
- uses: madrapps/[email protected]
if: ${{ github.event_name == 'pull_request' && hashFiles(env.JACOCO_INTEGRATIONS) != '' }}
with:
title: Integration Coverage Report
paths: ${{ env.JACOCO_INTEGRATIONS }}
token: ${{ secrets.GITHUB_TOKEN }}
update-comment: true
env:
JACOCO_INTEGRATIONS: .tools/target/coverage/integrations/jacoco.xml
- uses: actions/[email protected]
if: ${{ !cancelled() }}
with:
name: integrations-coverage-report
path: .tools/target/coverage/integrations
if-no-files-found: ignore
# fake e2e reporting
- name: Always empty E2E test report. See https://github.com/orgs/community/discussions/13690
uses: EnricoMi/[email protected]
if: ${{ !cancelled() }}
Expand All @@ -112,3 +79,9 @@ jobs:
job_summary: false
comment_mode: off
files: tests/*/target/surefire-reports/TEST-*.xml
- uses: actions/[email protected]
if: ${{ !cancelled() }}
with:
name: test-coverage-report
path: .tools/target/coverage
if-no-files-found: ignore
9 changes: 0 additions & 9 deletions .github/workflows/solution-sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,3 @@ jobs:
files: |
libs/*/target/surefire-reports/TEST-*.xml
apps/*/target/surefire-reports/TEST-*.xml
- uses: madrapps/[email protected]
if: ${{ github.event_name == 'pull_request' && hashFiles(env.JACOCO_UNITS) != '' }}
with:
title: Unit Coverage Report
paths: ${{ env.JACOCO_UNITS }}
token: ${{ secrets.GITHUB_TOKEN }}
update-comment: true
env:
JACOCO_UNITS: .tools/target/coverage/units/jacoco.xml

0 comments on commit 118fd52

Please sign in to comment.