Skip to content

Commit

Permalink
Fix test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
eel76 committed Nov 20, 2024
1 parent ce7e24f commit 4afe77e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
uses: ./.github/workflows/devcontainer-command.yml
with:
run_cmd: |
cmake -E make_directory ${{github.workspace}}/build
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Debug -DTRAITS_TEST_COVERAGE=On -S ${{github.workspace}}
cmake --build ${{github.workspace}}/build --config Debug --target all
cmake --build ${{github.workspace}}/build --config Debug --target test
cmake --build ${{github.workspace}}/build --config Debug --target coverage
cmake -E make_directory build
cmake -B build -DCMAKE_BUILD_TYPE=Debug -DTRAITS_TEST_COVERAGE=On -S .
cmake --build build --config Debug --target all
cmake --build build --config Debug --target test
cmake --build build --config Debug --target coverage

0 comments on commit 4afe77e

Please sign in to comment.