Skip to content

Commit

Permalink
sdf
Browse files Browse the repository at this point in the history
  • Loading branch information
diachenko-mischa committed Apr 25, 2024
1 parent 654ee8e commit 5a6dec5
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ jobs:
python3 -m gcovr --cobertura cobertura-coverage-details.xml
python3 -m gcovr --html-details coverage/coverage-details.html
- uses: actions/upload-artifact@v3 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
name: gtest_report
path: gtest_report.xml
if: success() || failure() # run this step even if previous step failed
with:
name: gtest_report
path: gtest_report.xml
- uses: actions/upload-artifact@v3 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
name: coverage
path: coverage/
if: success() || failure() # run this step even if previous step failed
with:
name: coverage
path: coverage/
- uses: actions/upload-artifact@v3 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
name: cobertura-coverage-details
path: cobertura-coverage-details.xml
if: success() || failure() # run this step even if previous step failed
with:
name: cobertura-coverage-details
path: cobertura-coverage-details.xml

0 comments on commit 5a6dec5

Please sign in to comment.