Skip to content

Commit 37bbc65

Browse files
committed
shellcheck lints
1 parent fa6ac8a commit 37bbc65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
# Create xml file for further processing; Create even if below minimum
182182
coverage xml --fail-under=0
183183
# Write markdown report to job summary
184-
coverage report --format=markdown -m >> $GITHUB_STEP_SUMMARY
184+
coverage report --format=markdown -m >> "$GITHUB_STEP_SUMMARY"
185185
186186
# For future use in case we want to add a PR comment for 3rd party PRs which requires
187187
# a workflow with elevated PR write permissions. Move below steps into a separate job.
@@ -214,7 +214,7 @@ jobs:
214214

215215
- name: Add link to report badge
216216
run: |
217-
run_url=${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}
217+
run_url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}?pr=${{ github.event.pull_request.number }}"
218218
sed -i "1s|^\(!.*\)$|[\1]($run_url)|" code-coverage-results.md
219219
220220
- name: Add Coverage PR Comment

0 commit comments

Comments
 (0)