Skip to content

Commit

Permalink
Use single quotes for strings in CI
Browse files Browse the repository at this point in the history
You\'re literally killing me here.
  • Loading branch information
Fayti1703 committed Apr 26, 2024
1 parent da1b5e0 commit 6b9fe64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
name: Coverage
- name: Produce Job Summary
run: |
printf "${{ steps.run_tests.outcome == "success" && "Test run success!" || "Test run **FAILED**!" }}\n**Engine Coverage**: %s%%\n**Test Code Utilization**: %s%%" \
printf "${{ steps.run_tests.outcome == 'success' && 'Test run success!' || 'Test run **FAILED**!' }}\n**Engine Coverage**: %s%%\n**Test Code Utilization**: %s%%" \
"$(jq '.Children[] | select(.Kind == "Assembly" and .Name == "BinaryMatrixEngine") | .CoveragePercent' "$HOME/coverage.json")" \
"$(jq '.Children[] | select(.Kind == "Assembly" and .Name == "BinaryMatrixEngine.Tests") | .CoveragePercent' "$HOME/coverage.json")" \
> $GITHUB_STEP_SUMMARY

0 comments on commit 6b9fe64

Please sign in to comment.