Skip to content

Commit

Permalink
asgasdg
Browse files Browse the repository at this point in the history
  • Loading branch information
diachenko-mischa committed Apr 25, 2024
1 parent aac825b commit 518b16e
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,23 @@ jobs:
mkdir coverage
python3 -m gcovr --cobertura cobertura-coverage-details.xml
python3 -m gcovr --html-details coverage/coverage-details.html
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: 'gtest_report.xml'
- name: Code Coverage Report
uses: irongut/[email protected]
with:
filename: cobertura-coverage-details.xml
badge: true
fail_below_min: true
format: markdown
hide_branch_rate: false
hide_complexity: true
indicators: true
output: both
thresholds: '60 80'
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: 'gtest_report.xml'
- name: Code Coverage Report
uses: irongut/[email protected]
with:
filename: cobertura-coverage-details.xml
badge: true
fail_below_min: true
format: markdown
hide_branch_rate: false
hide_complexity: true
indicators: true
output: both
thresholds: '60 80'
- uses: actions/upload-artifact@v3 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
Expand Down

0 comments on commit 518b16e

Please sign in to comment.