From 94afa0bc6747c98cb4324a68e1ead3e3a8c09c24 Mon Sep 17 00:00:00 2001
From: Mathis Randl <mathis.randl@epfl.ch>
Date: Fri, 17 Jan 2025 14:33:02 +0100
Subject: [PATCH] add valgrind test runs

---
 .gitlab-ci.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index caa6b4a..9ce6295 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,6 +6,7 @@ run-tests-release:
     - cd core
     - rustc --version && cargo --version
     - cargo test --release --verbose
+    - cargo valgrind test --release --verbose
 
 run-tests-debug:
   needs: []
@@ -13,6 +14,7 @@ run-tests-debug:
     - cd core
     - rustc --version && cargo --version
     - cargo test --verbose
+    - cargo valgrind test --verbose
 
 clippy:
   needs: []
@@ -28,4 +30,4 @@ format-check:
     - cd core
     - cargo fmt -- --check
     - cd ../bindings
-    - cargo fmt -- --check
+    - cargo fmt -- --check
\ No newline at end of file
-- 
GitLab