Skip to content

Commit f07a8b1

Browse files
authored
Enhance PHPUnit step with debug output
Added debug output for PHPUnit run to check paths and files.
1 parent af23198 commit f07a8b1

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/php.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,16 @@ jobs:
9797
COMPOSER_AUTH: '{"github-oauth": {"github.com": "${{ secrets.GITHUB_TOKEN }}"}}'
9898
- name: Run PHPUnit
9999
run: |
100+
echo -e "PWD:'$PWD'"
101+
ls -lA $PWD
102+
ls -lA /var/www/html/apps/solid/
103+
ls -lA /var/www/html/apps/solid/bin
104+
ls -lA /var/www/html/apps/solid/vendor
105+
ls -lA /var/www/html/apps/solid/vendor/bin
106+
100107
/var/www/html/apps/solid/bin/phpunit \
101-
--configuration /var/www/html/apps/solid/phpunit.xml \
102-
/var/www/html/apps/solid/tests/Unit
108+
--configuration /var/www/html/apps/solid/phpunit.xml \
109+
/var/www/html/apps/solid/tests/Unit
103110
104111
# 03.quality.php.scan.dependencies-vulnerabilities.yml
105112
scan-dependencies-vulnerabilities:

0 commit comments

Comments
 (0)