Skip to content

convenia/coverage-checker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Coverage Checker

This action validates if a pre generated coverage report with clover format is above a chosen treshold

Usage

- uses: convenia/coverage-checker@v1
  with:
    # Path to clover file
    # Default: '.coverage/xml/clover.xml'
    clover-xml-path: ''

    # Coverage Threshold
    # Default: 90
    min-coverage: 90

Requirements

To run the coverage checker you must have PHP installed. The image convenia/php-full:latest would be a nice choice for your workflows.

Usage

Almost all testing frameworks have an option to export a coverage report in clover xml format. This action uses this report to pass or fail the step when the coverage below a chosen treshold.

For exemplo lets allow the workflow to proceed only if the coverage generated for the PHPUnit is above 75%

name: Validate treshold

on:
  push:

jobs:
  validation:
    container: 
      image: convenia/php-full:latest
    steps:
    - name: Checkout
      uses: actions/checkout@v4
    - name: Generate Coverage Report
      run: ./vendor/bin/phpunit --colors='always' --coverage-clover clover.xml
    - name: Check Coverage
      uses: convenia/coverage-checker@v1
      with:
        clover-xml-path: "clover.xml"
        min-coverage:  75

License

The scripts and documentation in this project are released under the MIT License

Credits

This action is just a wrapper around this file from Marco Pivetta(Ocramius)

About

Composite Action to Check PHP Code Coverage Report

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published