This GitHub action reads a code coverage report and fails if the actual code coverage is below a specified threshold.
Required The name of the code coverage report file. Only reports in clover format are supported.
Required The code coverage in percent (0-100) required to pass.
uses: themichaelhall/check-code-coverage@v1
with:
report: coverage.xml
required-percentage: 80
MIT