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 c2c0c54 commit 3e303eeCopy full SHA for 3e303ee
.github/workflows/ci.yml
@@ -37,3 +37,8 @@ jobs:
37
- run: composer install
38
- run: composer audit
39
- run: composer run test
40
+ - name: Test & publish code coverage
41
+ if: ${{ matrix.php == '8.2' && matrix.os == 'ubuntu-latest' }}
42
+ uses: paambaati/codeclimate-action@v4.0.0
43
+ env:
44
+ CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE_REPORTER_ID }}
composer.json
@@ -50,7 +50,7 @@
50
"@phpunit"
51
],
52
"phpstan": "vendor/bin/phpstan analyse src tests --level 5",
53
- "phpunit": "XDEBUG_MODE=coverage vendor/bin/phpunit tests/src --verbose --coverage-text"
+ "phpunit": "vendor/bin/phpunit tests/src --verbose --coverage-text"
54
},
55
"config": {
56
"allow-plugins": {
0 commit comments