We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faa5776 commit e6f5251Copy full SHA for e6f5251
1 file changed
.github/workflows/linux.yml
@@ -5,9 +5,6 @@
5
6
name: Linux
7
8
-permissions:
9
- pull-requests: write
10
-
11
on:
12
workflow_call:
13
inputs:
@@ -60,10 +57,10 @@ jobs:
60
57
- name: Delete build directory
61
58
run: rm -rf build
62
59
63
- - name: Configure (source coverage)
+ - name: Configure (test coverage)
64
run: mkdir build && cd build && cmake ../tests/coverage
65
66
- - name: Build and run (source coverage)
+ - name: Build and run (test coverage)
67
working-directory: build
68
run: make coverage report.md
69
@@ -77,10 +74,8 @@ jobs:
77
74
- name: Report code coverage
78
75
uses: marocchino/sticky-pull-request-comment@v3
79
76
with:
80
- message: |
81
- ```
82
- $(cat build/report.txt)
83
+ GITHUB_TOKEN: ${{ secrets.TOKEN_WRITE_PR }}
+ path: build/report.md
84
85
86
0 commit comments