From 56305137827ff7f97f738ca77ccdfbe665144355 Mon Sep 17 00:00:00 2001 From: "George G. Vega Yon" Date: Tue, 30 Jan 2024 18:07:23 -0700 Subject: [PATCH] Running openmp w/ valgrind --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 057b96e4..fe7c2135 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,8 +45,12 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Install valgrind + run: sudo apt-get install --no-install-recommends valgrind + - name: Check run: | - cd tests && make main.o && ./main.o + cd tests && make 01c.o && valgrind --leak-check=full ./01c.o + # cd tests && make main.o && ./main.o