Skip to content

Commit

Permalink
Test new wording
Browse files Browse the repository at this point in the history
  • Loading branch information
thnkslprpt committed Aug 8, 2024
1 parent 08cbaed commit 01d313b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/standalone-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,22 +109,22 @@ jobs:
- name: Enforce keeping coverage function minimum up-to-date
if: ${{ env.run_lcov == 'TRUE' && always() && steps.stats.outputs.ncov_functions < env.allowed_ncov_functions }}
run: |
echo "::error::${{ steps.stats.outputs.ncov_functions }} uncovered function(s) reported, but ${{ env.allowed_ncov_functions }} are allowed."
echo "::error::Please update (lower) the allowed_ncov_functions variable to ${{ steps.stats.outputs.ncov_functions }} in order to match the new coverage level."
echo "::error::${{ steps.stats.outputs.ncov_functions }} uncovered function(s) reported, but ${{ env.allowed_ncov_functions }} is/are allowed."
echo "::error::Please update (lower) the 'allowed_ncov_functions' variable to ${{ steps.stats.outputs.ncov_functions }} in order to match the new coverage level."
/bin/false
- name: Enforce keeping coverage line minimum up-to-date
if: ${{ env.run_lcov == 'TRUE' && always() && steps.stats.outputs.ncov_lines < env.allowed_ncov_lines }}
run: |
echo "::error::${{ steps.stats.outputs.ncov_lines }} uncovered line(s) reported, but ${{ env.allowed_ncov_lines }} are allwoed."
echo "::error::Please update (lower) the allowed_ncov_lines variable to ${{ steps.stats.outputs.ncov_lines }} in order to match the new coverage level."
echo "::error::${{ steps.stats.outputs.ncov_lines }} uncovered line(s) reported, but ${{ env.allowed_ncov_lines }} is/are allwoed."
echo "::error::Please update (lower) the 'allowed_ncov_lines' variable to ${{ steps.stats.outputs.ncov_lines }} in order to match the new coverage level."
/bin/false
- name: Enforce keeping coverage branch minimum up-to-date
if: ${{ env.run_lcov == 'TRUE' && always() && steps.stats.outputs.ncov_branches < env.allowed_ncov_branches }}
run: |
echo "::error::${{ steps.stats.outputs.ncov_branches }} uncovered branch(es) reported, but ${{ env.allowed_ncov_branches }} are allowed."
echo "::error::Please update (lower) the allowed_ncov_branches variable to ${{ steps.stats.outputs.ncov_branches }} in order to match the new coverage level."
echo "::error::${{ steps.stats.outputs.ncov_branches }} uncovered branch(es) reported, but ${{ env.allowed_ncov_branches }} is/are allowed."
echo "::error::Please update (lower) the 'allowed_ncov_branches' variable to ${{ steps.stats.outputs.ncov_branches }} in order to match the new coverage level."
/bin/false
- name: Assemble Results
Expand Down

0 comments on commit 01d313b

Please sign in to comment.