We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c9c376 commit 82d3409Copy full SHA for 82d3409
1 file changed
.github/workflows/ci.yaml
@@ -19,3 +19,9 @@ jobs:
19
20
- name: Build and run tests
21
run: make test
22
+
23
+ - name: Run Valgrind to search for memory leaks
24
+ run: |
25
+ sudo apt-get update
26
+ sudo apt-get install -y valgrind
27
+ valgrind --leak-check=full --error-exitcode=1 ./build/bin/test_runner
0 commit comments