From 4ea14a25f130087bf5933afe3e6208d3ed0e6e6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Mon, 19 Dec 2022 21:41:43 +0100 Subject: [PATCH] install Valgrind --- .github/workflows/tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ab53edc..a53b958 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,6 +9,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Install Valgrind + run: sudo apt install valgrind - name: Run tests with standard compilation flags working-directory: tests/ run: ./normal_compile.sh @@ -16,6 +18,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Install Valgrind + run: sudo apt install valgrind - name: Run tests with optimized compilation flags working-directory: tests/ run: ./optimized_compile.sh