Skip to content

Commit

Permalink
Fix coverage command
Browse files Browse the repository at this point in the history
  • Loading branch information
ppelgrims committed Apr 22, 2024
1 parent d3ac62d commit 1c683e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/quality-assurance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:
composer update --prefer-dist --no-interaction
- name: Run tests
run: vendor/bin/phpunit --debug --coverage-clover=coverage.clover
run: vendor/bin/phpunit --coverage-clover=coverage.clover

- name: Publish code coverage
uses: paambaati/codeclimate-action@v5.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CODECLIMATE_TEST_REPORTER_ID }}
with:
coverageCommand: vendor/bin/phpunit --verbose --coverage-clover=coverage.clover
coverageCommand: vendor/bin/phpunit --debug --coverage-clover=coverage.clover
coverageLocations: ${{github.workspace}}/*.clover:clover
debug: true

Expand Down

0 comments on commit 1c683e9

Please sign in to comment.