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 53bc1cf commit a59aa14Copy full SHA for a59aa14
.github/workflows/build.yaml
@@ -29,8 +29,10 @@ jobs:
29
- name: 'Composer Install'
30
uses: 'ramsey/composer-install@v3'
31
- name: 'PHPUnit'
32
- run: 'XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml'
+ run: 'XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --coverage-clover $RUNNER_TEMP/coverage.xml'
33
- name: 'Code Climate'
34
uses: 'paambaati/codeclimate-action@v6'
35
+ with:
36
+ coverageLocations: "$RUNNER_TEMP/phpunit-coverage.xml"
37
env:
38
CC_TEST_REPORTER_ID: "${{ secrets.CODECLIMATE_REPORTER_ID }}"
.gitignore
@@ -1,5 +1,4 @@
1
/.idea/
2
/.phpunit.cache/
3
-/build/
4
/composer.lock
5
/vendor/
0 commit comments