We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e2a4d6 commit f560021Copy full SHA for f560021
1 file changed
.github/workflows/php.yml
@@ -3,8 +3,7 @@ name: Run tests
3
on: [push]
4
5
jobs:
6
- build:
7
-
+ tests:
8
runs-on: ubuntu-latest
9
10
strategy:
@@ -24,3 +23,23 @@ jobs:
24
23
25
- name: Run phpstan
26
run: composer run phpstan
+
27
+ coverage:
28
+ runs-on: ubuntu-latest
29
30
+ container: ghcr.io/bulkgate/plugin:8.3
31
32
+ steps:
33
+ - uses: actions/checkout@v1
34
35
+ - name: Install dependencies
36
+ run: composer install --prefer-dist --no-progress --no-suggest
37
38
+ - name: Run test suite
39
+ run: composer run coverage
40
41
+ - name: Upload coverage
42
+ uses: actions/upload-artifact@v2
43
+ with:
44
+ name: coverage-report
45
+ path: coverage.html
0 commit comments