Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Coverage report patch #4060

Merged
merged 4 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions .github/workflows/testing-from-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,12 @@ jobs:
pwd
ls -al | grep 'coverage'

- name: Publish Coverage Report to Pull Request
uses: 5monkeys/cobertura-action@master
- name: Coverage Action
if: github.event_name == 'pull_request'
uses: orgoro/[email protected]
with:
path: ./coverage.xml
minimum_coverage: 85
skip_covered: true # Set to true to remove 100% covered from report
fail_below_threshold: false # Fails the action if 90% threshold is not met
show_missing: true
only_changed_files: true
repo_token: ${{ secrets.GITHUB_TOKEN }}
coverageFile: ./coverage.xml
token: ${{ secrets.GITHUB_TOKEN }}

# a11y-testing:
# runs-on: ubuntu-latest
Expand Down
14 changes: 5 additions & 9 deletions .github/workflows/testing-from-ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,12 @@ jobs:
pwd
ls -al | grep 'coverage'

- name: Publish Coverage Report to Pull Request
uses: 5monkeys/cobertura-action@master
- name: Coverage Action
if: github.event_name == 'pull_request'
uses: orgoro/[email protected]
with:
path: ./coverage.xml
minimum_coverage: 85
skip_covered: true # Set to true to remove 100% covered from report
fail_below_threshold: false # Fails the action if 90% threshold is not met
show_missing: true
only_changed_files: true
repo_token: ${{ secrets.GITHUB_TOKEN }}
coverageFile: ./coverage.xml
token: ${{ secrets.GITHUB_TOKEN }}

# a11y-testing:
# runs-on: ubuntu-latest
Expand Down
Loading