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 c7746ae commit dcde359Copy full SHA for dcde359
.github/workflows/analyze.yaml
@@ -11,3 +11,9 @@ jobs:
11
- name: analyze
12
run: |
13
cd lib && scan-build -o ../_analyze --use-cc clang make
14
+ - name: upload report
15
+ run: |
16
+ cd _analyze
17
+ FILE=$(ls)
18
+ mv $FILE /var/public_html/analyze/$FILE
19
+ echo "View [$FILE](https://ci.libccv.org/analyze/$FILE)" >> $GITHUB_STEP_SUMMARY
.github/workflows/coverage.yaml
@@ -12,6 +12,12 @@ jobs:
- name: tests
make -C test check
- - name: coverage report
+ - name: generate report
cd test && ./cover-gen.rb ../_coverage
20
+ cd _coverage
21
22
+ mv $FILE /var/public_html/coverage/$FILE
23
+ echo "View [$FILE](https://ci.libccv.org/coverage/$FILE)" >> $GITHUB_STEP_SUMMARY
0 commit comments