We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44271f3 commit 5abf7d2Copy full SHA for 5abf7d2
.github/workflows/build-and-test.yml
@@ -35,9 +35,16 @@ jobs:
35
uses: jwlawson/actions-setup-cmake@802fa1a2c4e212495c05bf94dba2704a92a472be
36
with:
37
cmake-version: '3.31.x'
38
+ - name: Install Valgrind (Ubuntu)
39
+ if: ${{matrix.platform == 'ubuntu-latest'}}
40
+ run: sudo apt-get install -y valgrind
41
- name: Configure
42
run: cmake -B build
43
- name: Build
44
run: cmake --build build
45
- name: test
46
run: ctest --test-dir build -C Debug
47
+ - name: Run Valgrind Memory Check
48
49
+ run: cd ${{github.workspace}}/build/test/Dss-C/test && valgrind --error-exitcode=1 --leak-check=full ../Dss-C test
50
+
0 commit comments