Skip to content

Commit

Permalink
another one
Browse files Browse the repository at this point in the history
  • Loading branch information
franneck94 committed Mar 10, 2024
1 parent b3266fb commit 7808375
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 17 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@ jobs:
cmake -H. -Bbuild -G "Unix Makefiles" -DCMAKE_BUILD_TYPE="Debug"
- name: building and testing
run: |
ctest --build-and-test
cmake --build build --config Debug
cd build
ctest .
31 changes: 16 additions & 15 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,21 @@ jobs:
run: |
cd build
ctest .
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
- name: Code Coverage Report
uses: irongut/[email protected]
with:
dotnet-version: 8.x
dotnet-quality: 'ga'

- name: Test
run: |
ls -la build/
- name: ReportGenerator
uses: danielpalme/[email protected]
filename: build/coverage/summary_cobertura.xml
badge: true
fail_below_min: true
format: markdown
hide_branch_rate: false
hide_complexity: true
indicators: true
output: both
thresholds: '60 80'
- name: Add Coverage PR Comment
uses: marocchino/sticky-pull-request-comment@v2
if: github.event_name == 'pull_request'
with:
reports: build/coverage/coverage.cobertura.xml
targetdir: coverage
reporttypes: Html;Badges
recreate: true
path: code-coverage-results.md
4 changes: 3 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@ jobs:
cmake -H"." -Bbuild -T host=x86 -A x64 -DCMAKE_BUILD_TYPE="Debug"
- name: building and testing
run: |
ctest --build-and-test
cmake --build build --config Debug
cd build
ctest .

0 comments on commit 7808375

Please sign in to comment.