Skip to content

Commit

Permalink
Add Valgrind installation verification step
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
koriym committed Dec 1, 2024
1 parent e3d34cb commit 3c9ecdd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/continuous-integration-pecl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,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

Expand Down

0 comments on commit 3c9ecdd

Please sign in to comment.