We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fb8ec8 commit 7436581Copy full SHA for 7436581
.github/workflows/ci.yml
@@ -23,8 +23,20 @@ jobs:
23
24
- uses: php-actions/composer@v6 # or alternative dependency management
25
26
+
27
- name: Run PHPUnit
- run: vendor/bin/phpunit
28
+ run: vendor/bin/phpunit --coverage-clover ./coverage.xml
29
+ env:
30
+ XDEBUG_MODE: coverage
31
32
+ - name: Upload to Codecov
33
+ uses: codecov/codecov-action@v2
34
+ with:
35
+ token: ${{ secrets.CODECOV_TOKEN }}
36
+ files: ./coverage.xml
37
+ verbose: true
38
39
40
cs:
41
name: Coding standards
42
runs-on: ubuntu-latest
.gitignore
@@ -14,3 +14,4 @@
14
coverage
15
coverage.txt
16
.phpcs-cache
17
+coverage.xml
0 commit comments