workflow yaml updates

This commit is contained in:
John Guo
2022-05-10 16:53:39 +08:00
parent 0e75d39811
commit 54f0968f86

View File

@ -156,6 +156,10 @@ jobs:
- name: Merge Coverage
run: |
for file in `find . -name coverage.txt`; do
# In case of recursively incremental selffile in root directory.
if [ ".coverage.txt" = $file ]; then
continue 1
fi
cat $file >> coverage.txt
done