diff --git a/.github/workflows/gnovm.yml b/.github/workflows/gnovm.yml index be180e64709..77c8caffad8 100644 --- a/.github/workflows/gnovm.yml +++ b/.github/workflows/gnovm.yml @@ -112,17 +112,14 @@ jobs: - name: Merge coverages working-directory: ${{ env.COVERAGE_DATA }} run: | - ls # create coverage directory list separate by coma. export COVERAGE_DIRS="$(ls | tr '\n' ',' | sed s/,$//)" - echo $COVERAGE_DIRS - # merge all directory coverages go tool covdata merge -i="$COVERAGE_DIRS" -o $COVERAGE_OUTPUT # generate coverage profile - go tool covdata textfmt -i=merged -o $COVERAGE_PROFILE + go tool covdata textfmt -i=$COVERAGE_OUTPUT -o $COVERAGE_PROFILE - name: Upload combined coverage to Codecov uses: codecov/codecov-action@v3