Skip to content

Commit

Permalink
Update:update github-action
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdi-fathi committed Apr 5, 2023
1 parent 46628db commit 3fdf217
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ jobs:
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: /home/runner/work/eloquent-filter/eloquent-filter/build/logs/clover.xml
file: ./tests/build/logs/clover.xml
9 changes: 3 additions & 6 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<directory suffix=".php">./src</directory>
</include>
<report>
<clover outputFile="build/logs/clover.xml"/>
<html outputDirectory="build/coverage"/>
<text outputFile="build/coverage.txt"/>
<clover outputFile="tests/build/logs/clover.xml"/>
<html outputDirectory="tests/build/coverage"/>
<text outputFile="tests/build/coverage.txt"/>
</report>
</coverage>
<testsuites>
Expand All @@ -24,7 +24,4 @@
<ini name="xdebug.mode" value="coverage"/>
<env name="XDEBUG_MODE" value="coverage"/>
</php>
<logging>
<junit outputFile="build/report.junit.xml"/>
</logging>
</phpunit>

0 comments on commit 3fdf217

Please sign in to comment.