Skip to content

Commit

Permalink
update composer scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
reliq committed May 12, 2024
1 parent 75637bc commit 76e9d4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }} #required
file: ./coverage.xml #optional
file: ./build/coverage.xml #optional
flags: unittests #optional
name: codecov-umbrella #optional
fail_ci_if_error: true #optional (default = false)
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
},
"scripts": {
"test": "phpunit",
"test:ci": "phpunit --verbose --colors=auto --coverage-clover=coverage.xml",
"test:unit": "phpunit --testsuite=Unit --verbose --coverage-clover=coverage.xml"
"test:ci": "phpunit --colors=auto --coverage-clover=build/coverage.xml",
"test:unit": "phpunit --testsuite=Unit --verbose --coverage-clover=build/coverage.xml"
},
"config": {
"sort-packages": true,
Expand Down

0 comments on commit 76e9d4d

Please sign in to comment.