Skip to content

Commit

Permalink
Fix in coverage checking in unit testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pablosnt committed Feb 19, 2022
1 parent 5f03ab5 commit 21cbfaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/unit-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
env:
COVERAGE: ${{ steps.coverage.outputs.percent }}
run: |
if [ $(echo "$REQUIRED_COVERAGE > $percent" | bc) -ne 0 ]
if [ $(echo "$REQUIRED_COVERAGE > $COVERAGE" | bc) -ne 0 ]
then
exit 10
fi

0 comments on commit 21cbfaa

Please sign in to comment.