Skip to content

Commit

Permalink
GHA: use proper escape character for coverage
Browse files Browse the repository at this point in the history
1 chasracter need to be escaped for echo

Signed-off-by: Robert Gałat <[email protected]>
  • Loading branch information
RobertGalatNordic committed Oct 25, 2023
1 parent e2c8d1e commit e945f6d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/common_run_dut_ut.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,12 @@ jobs:
echo "" >> summary
echo "## Summary" >> summary
echo "" >> summary
echo "```" >> summary
echo "\`\`\`" >> summary
lcov --summary coverage.info >> summary
echo "```" >> summary
echo "# File coverage" >> summary
echo "\`\`\`" >> summary
echo "## File coverage" >> summary
echp "">> summary
echo "```" >> summary
echo "\`\`\`" >> summary
lcov --list coverage.info >> summary
echo "```" >> summary
echo "\`\`\`" >> summary
cat summary >> $GITHUB_STEP_SUMMARY

0 comments on commit e945f6d

Please sign in to comment.