Skip to content

Commit f377f27

Browse files
Copilotyegor256
andcommitted
Fix shellcheck issues in coverage workflow to ensure CI passes
Co-authored-by: yegor256 <[email protected]>
1 parent 752d196 commit f377f27

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

.github/workflows/coverage.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,17 @@ jobs:
4949
5050
# Extract overall coverage summary
5151
if [ -f "$COVERAGE_FILE" ]; then
52-
echo "## Code Coverage Report" >> $GITHUB_STEP_SUMMARY
53-
echo "✅ Coverage report has been generated successfully!" >> $GITHUB_STEP_SUMMARY
54-
echo "" >> $GITHUB_STEP_SUMMARY
55-
echo "The report includes detailed per-module breakdowns for:" >> $GITHUB_STEP_SUMMARY
56-
echo "- Top Level Definitions coverage" >> $GITHUB_STEP_SUMMARY
57-
echo "- Alternatives coverage" >> $GITHUB_STEP_SUMMARY
58-
echo "- Expressions coverage" >> $GITHUB_STEP_SUMMARY
59-
echo "" >> $GITHUB_STEP_SUMMARY
60-
echo "📊 View the full HTML report in the artifacts section below." >> $GITHUB_STEP_SUMMARY
52+
{
53+
echo "## Code Coverage Report"
54+
echo "✅ Coverage report has been generated successfully!"
55+
echo ""
56+
echo "The report includes detailed per-module breakdowns for:"
57+
echo "- Top Level Definitions coverage"
58+
echo "- Alternatives coverage"
59+
echo "- Expressions coverage"
60+
echo ""
61+
echo "📊 View the full HTML report in the artifacts section below."
62+
} >> "$GITHUB_STEP_SUMMARY"
6163
fi
6264
- name: Install hpc-lcov for Codecov
6365
if: github.ref == 'refs/heads/master' && github.event_name == 'push'

0 commit comments

Comments
 (0)