File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -23,16 +23,16 @@ jobs:
23
23
image : " ghcr.io/it-at-m/eappointment-php-base:${{ matrix.php_version }}-dev"
24
24
env :
25
25
XDEBUG_MODE : coverage
26
- outputs :
27
- result : ${{ steps.set-result.outputs.result }}
26
+ PHP_INI_SCAN_DIR : " /usr/local/etc/php/conf.d:/tmp/php/conf.d"
28
27
steps :
29
28
- uses : actions/checkout@main
30
29
31
- - name : Configure Xdebug
32
- if : matrix.module == 'zmsslim'
30
+ - name : Configure PHP
33
31
run : |
34
- echo "xdebug.mode=coverage" > /usr/local/etc/php/conf.d/xdebug.ini
35
- echo "xdebug.start_with_request=yes" >> /usr/local/etc/php/conf.d/xdebug.ini
32
+ mkdir -p /tmp/php/conf.d
33
+ echo "zend_extension=xdebug.so" > /tmp/php/conf.d/xdebug.ini
34
+ echo "xdebug.mode=coverage" >> /tmp/php/conf.d/xdebug.ini
35
+ echo "xdebug.start_with_request=yes" >> /tmp/php/conf.d/xdebug.ini
36
36
37
37
- name : Install Composer Dependencies
38
38
run : |
53
53
--log-junit coverage/junit.xml
54
54
echo "Coverage files generated:"
55
55
ls -la coverage/
56
-
57
56
- name : Upload Coverage
58
57
uses : actions/upload-artifact@v4
59
58
with :
You can’t perform that action at this time.
0 commit comments