From ca34e53025f7688c0d28dc7acd1900be0fa54d13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Mon, 19 Dec 2022 21:47:43 +0100 Subject: [PATCH] use apt-get instead of apt --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a53b958..3409c90 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Install Valgrind - run: sudo apt install valgrind + run: sudo apt-get install -y valgrind - name: Run tests with standard compilation flags working-directory: tests/ run: ./normal_compile.sh @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Install Valgrind - run: sudo apt install valgrind + run: sudo apt-get install -y valgrind - name: Run tests with optimized compilation flags working-directory: tests/ run: ./optimized_compile.sh