Skip to content

Commit 4afe77e

Browse files
committed
Fix test coverage
1 parent ce7e24f commit 4afe77e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/coverage.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
uses: ./.github/workflows/devcontainer-command.yml
1212
with:
1313
run_cmd: |
14-
cmake -E make_directory ${{github.workspace}}/build
15-
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Debug -DTRAITS_TEST_COVERAGE=On -S ${{github.workspace}}
16-
cmake --build ${{github.workspace}}/build --config Debug --target all
17-
cmake --build ${{github.workspace}}/build --config Debug --target test
18-
cmake --build ${{github.workspace}}/build --config Debug --target coverage
14+
cmake -E make_directory build
15+
cmake -B build -DCMAKE_BUILD_TYPE=Debug -DTRAITS_TEST_COVERAGE=On -S .
16+
cmake --build build --config Debug --target all
17+
cmake --build build --config Debug --target test
18+
cmake --build build --config Debug --target coverage

0 commit comments

Comments
 (0)