Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
check-circle

GitHub Action

SimpleCov+ Action

0.9.1

SimpleCov+ Action

check-circle

SimpleCov+ Action

Enabling SimpleCov support for Github Actions

Installation

Copy and paste the following snippet into your .yml file.

              

- name: SimpleCov+ Action

uses: joshmfrankel/[email protected]

Learn more about this action in joshmfrankel/simplecov-check-action

Choose a version

SimpleCov+ Action

A Github check action which displays failing test coverage from SimpleCov while providing the option to fail a build based on minimum coverage threshold.

Github PR Check UI

Want to see more examples of this check in action? 😉 See screenshots.md

Basic Installation

In order for SimpleCov+ Action to function properly, you first need the simplecov gem. See Getting Started.

Assuming you've followed the guide above (you have the gem in your Gemfile and have properly setup test_helper.rb), then the only other step is to utilize the Github action within your workflow.

  # However you run your tests to generate code coverage
  - name: Run my tests
    run: |
      bundle exec rspec specs/

  # Minimum configuration
  - uses: joshmfrankel/simplecov-check-action@main
    with:
      github_token: ${{ secrets.GITHUB_TOKEN }}

Configuration Options

See https://github.com/joshmfrankel/simplecov-check-action/blob/main/action.yml for all available options and their defaults.

Most useful is the minimum_coverage option as it allows specification as to the value at which a failure result should be produced.

Advanced Installation

The advanced installation switches the coverage failing mode from overall test coverage to per file coverage. This is similiar to the minimum_coverage_by_file option that SimpleCov provides. See minimum_coverage_by_file

In order to activate advanced mode, you'll need to configure the simplecov-json gem. See Usage for simplecov-json.

You'll need to setup both the standard formatter as well as json formatter within your test_helper.rb. Example below:

require "simplecov"
require "simplecov-json"
SimpleCov.formatters = SimpleCov::Formatter::MultiFormatter.new([
  SimpleCov::Formatter::HTMLFormatter,
  SimpleCov::Formatter::JSONFormatter
])
SimpleCov.start do
  # your config
end

One large benefit to this approach is that your code coverage minimum threshold is less skewed by outlier results. Said best by the SimpleCov documentation:

You can define the minimum coverage by file percentage expected... This is useful to help ensure coverage is relatively consistent, rather than being skewed by particularly good or bad areas of the code.

Example configuration

Still struggling to set this up? SimpleCov+ Action utilizes itself within a Github workflow. You can view the workflow and the spec_helper files for a good example of how to configure this check.

Example Github Workflow

Example Spec Helper SimpleCov Setup