From 54f0968f86604e444b8bab9dad8395b6d284d526 Mon Sep 17 00:00:00 2001 From: John Guo Date: Tue, 10 May 2022 16:53:39 +0800 Subject: [PATCH] workflow yaml updates --- .github/workflows/gf.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/gf.yml b/.github/workflows/gf.yml index aa6f0531d..72aedd9e8 100644 --- a/.github/workflows/gf.yml +++ b/.github/workflows/gf.yml @@ -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