Skip to content

Commit

Permalink
Remove redundant -d flag in CI workflow
Browse files Browse the repository at this point in the history
The -d flag was unnecessarily used in the PHP command within the GitHub Actions workflow for continuous integration. This change simplifies the YAML file by removing the redundant flag, ensuring that the PHP extension is correctly specified without it. This adjustment improves the readability and maintainability of the workflow configuration.
  • Loading branch information
koriym committed Dec 1, 2024
1 parent 668b611 commit 3680685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration-pecl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
--show-leak-kinds=all \
--track-origins=yes \
php -n \
-d extension=./ext-rayaop/modules/rayaop.so \
extension=./ext-rayaop/modules/rayaop.so \
demo/05-pecl.php
# Combined step for PHPUnit and Valgrind analysis
Expand Down

0 comments on commit 3680685

Please sign in to comment.