Skip to content

Commit

Permalink
phpunit.xml fixes + test github action updates
Browse files Browse the repository at this point in the history
  • Loading branch information
swapnilsarwe committed Jul 16, 2024
1 parent 9e0abf8 commit bd5a6c3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip
coverage: none
coverage: xdebug

- name: Setup problem matchers
run: |
Expand Down
10 changes: 10 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,15 @@
<directory suffix=".php">src</directory>
</include>
</source>
<coverage>
<report>
<clover outputFile="build/logs/clover.xml" />
<html outputDirectory="build/coverage" />
<text outputFile="build/coverage.txt" />
</report>
</coverage>
<logging>
<junit outputFile="build/report.junit.xml" />
</logging>

</phpunit>

0 comments on commit bd5a6c3

Please sign in to comment.