We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b3e538 commit 48588e8Copy full SHA for 48588e8
.github/workflows/continuous-integration.yml
@@ -132,13 +132,13 @@ jobs:
132
uses: php-actions/composer@v6
133
134
- name: PHPUnit Tests
135
- run: ./vendor/bin/phpunit --coverage-clover ./coverage.xml
+ run: ./vendor/bin/phpunit --coverage-clover ./vendor/coverage.xml
136
137
- name: Upload to Codecov
138
uses: codecov/codecov-action@v2
139
with:
140
token: ${{ secrets.CODE_COV_TOKEN }}
141
- files: ./coverage.xml
+ files: ./vendor/coverage.xml
142
verbose: true
143
144
- name: Publish Test Report
phpunit.xml
@@ -19,7 +19,7 @@
19
</source>
20
21
<logging>
22
- <junit outputFile="./vendor/junit.xml"/>
+ <junit outputFile="vendor/junit.xml"/>
23
</logging>
24
25
<coverage>
0 commit comments