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 b0c9f10 commit 8fbdb84Copy full SHA for 8fbdb84
.github/workflows/php.yml
@@ -28,4 +28,10 @@ jobs:
28
run: composer lint
29
30
- name: Run PHPUnit tests
31
- run: composer test
+ run: composer test
32
+
33
+ - name: Upload coverage report
34
+ uses: actions/upload-artifact@v2
35
+ with:
36
+ name: coverage-report
37
+ path: coverage/
composer.json
@@ -30,6 +30,6 @@
"scripts": {
"lint": "phpcs --ignore=/vendor/* --standard=PSR12 .",
"lint:fix": "phpcbf --ignore=/vendor/* --standard=PSR12 .",
- "test": "phpunit --testdox --coverage-clover coverage/clover.xml --coverage-filter src/"
+ "test": "phpunit --testdox --coverage-clover coverage/clover.xml --coverage-html coverage --coverage-filter src/"
}
0 commit comments