From 0e5d9396932b388ef7f313db17977815050b0cd5 Mon Sep 17 00:00:00 2001 From: Jamie Alessio Date: Sun, 19 May 2024 22:32:07 -0700 Subject: [PATCH] Fix typo s/Percantage/Percentage/ (#165) --- .github/workflows/live-test.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/live-test.yml b/.github/workflows/live-test.yml index a7a2429..2a217c4 100644 --- a/.github/workflows/live-test.yml +++ b/.github/workflows/live-test.yml @@ -23,7 +23,7 @@ jobs: - name: Check the output coverage run: | - echo "Coverage Percantage - ${{ steps.coverageComment.outputs.coverage }}" + echo "Coverage Percentage - ${{ steps.coverageComment.outputs.coverage }}" echo "Coverage Color - ${{ steps.coverageComment.outputs.color }}" echo "Coverage Html - ${{ steps.coverageComment.outputs.coverageHtml }}" diff --git a/README.md b/README.md index 1a1a740..0936477 100644 --- a/README.md +++ b/README.md @@ -148,7 +148,7 @@ Example GitHub Action workflow that uses coverage percentage as output (see the - name: Check the output coverage run: | - echo "Coverage Percantage - ${{ steps.coverageComment.outputs.coverage }}" + echo "Coverage Percentage - ${{ steps.coverageComment.outputs.coverage }}" echo "Coverage Color - ${{ steps.coverageComment.outputs.color }}" echo "Coverage Html - ${{ steps.coverageComment.outputs.coverageHtml }}" echo "Summary Report - ${{ steps.coverageComment.outputs.summaryReport }}"