Skip to content

Commit e409681

Browse files
committed
ci(test-all): report coverage to PR
1 parent 5631ac3 commit e409681

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/test-all.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Test all (on all branches)
22

3-
on: [push]
3+
on: [push, pull_request]
44

55
jobs:
66
test:
@@ -39,3 +39,11 @@ jobs:
3939
--logger GitHubActions
4040
--
4141
RunConfiguration.CollectSourceInformation=true
42+
43+
- name: Comment on PR with coverage
44+
if: ${{ github.event_name == 'pull_request' }}
45+
run: echo "Test coverage 99%"
46+
# uses: actions/github-script@v7
47+
# script: |
48+
# ...
49+
# send comment to pull request

0 commit comments

Comments
 (0)