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