From e31530b1eb24badf660ad612945abde5deff6de9 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 1 Dec 2024 10:55:34 +0900 Subject: [PATCH] Add Valgrind installation verification step This change adds a step to verify that Valgrind is installed correctly in the continuous integration workflow. Running `valgrind --version` ensures that the tool is available before proceeding further in the workflow, which helps in diagnosing any installation issues early. --- .github/workflows/continuous-integration-pecl.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/continuous-integration-pecl.yml b/.github/workflows/continuous-integration-pecl.yml index 7be54fa1..31020ceb 100644 --- a/.github/workflows/continuous-integration-pecl.yml +++ b/.github/workflows/continuous-integration-pecl.yml @@ -32,6 +32,9 @@ jobs: sudo apt-get update sudo apt-get install -y autoconf automake libtool bison re2c valgrind + - name: Verify Valgrind installation + run: valgrind --version + - name: Install Composer dependencies run: composer install --prefer-dist --no-progress