Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Jul 23, 2025. It is now read-only.

GitHub Action to send your code coverage to CodeClimate

License

NotificationsYou must be signed in to change notification settings

paambaati/codeclimate-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Test CoverageBuild StatusMIT License

Important

CodeClimate has now been deprecated in favour of Qlty (read announcement post). Seehttps://docs.qlty.sh/migration/coverage to learn how to migrate to their new official GitHub Action workflow.

A GitHub action that publishes your code coverage toCode Climate.

Usage

This action requires that you set theCC_TEST_REPORTER_ID environment variable. You can find it under Repo Settings in your Code Climate project.

Inputs

InputDefaultDescription
coverageCommandThe actual command that should be executed to run your tests and capture coverage.
workingDirectorySpecify a custom working directory where the coverage command should be executed.
debugfalseEnable Code Coverage debug output when set totrue.
coverageLocationsLocations to find code coverage as a multiline string.
Each line should be of the form<location>:<type>.
type can be any one ofclover, cobertura, coverage.py, excoveralls, gcov, gocov, jacoco, lcov, lcov-json, simplecov, xccov. See examples below.
prefixundefinedSee--prefix
verifyDownloadtrueVerifies the downloaded Code Climate reporter binary's checksum and GPG signature. SeeVerifying binaries
verifyEnvironmenttrueVerifies the current runtime environment (operating system and CPU architecture) is supported by the Code Climate reporter. Seelist of supported platforms
batchSizeBatch size for source files (cc-test-reporter upload-coverage uses 500 by default)

NoteIf you are a Ruby developer usingSimpleCov, other users have recommended installing an additional gem –gem "simplecov_json_formatter" – this gem fixesjson error from the defaultcoverage/.resultset.json output from SimpleCov.

Example

steps:  -name:Test & publish code coverageuses:paambaati/codeclimate-action@v9.0.0env:CC_TEST_REPORTER_ID:<code_climate_reporter_id>with:coverageCommand:npm run coveragedebug:true

Example with only upload

When you've already generated the coverage report in a previous step and wish to just upload the coverage data to Code Climate, you can leave out thecoverageCommand option.

steps:  -name:Test & publish code coverageuses:paambaati/codeclimate-action@v9.0.0env:CC_TEST_REPORTER_ID:<code_climate_reporter_id>

Example with wildcard (glob) pattern

This action supports basic glob patterns to search for files matching given patterns. It uses@actions/glob to expand the glob patterns.

steps:  -name:Test & publish code coverageuses:paambaati/codeclimate-action@v9.0.0env:CC_TEST_REPORTER_ID:<code_climate_reporter_id>with:coverageCommand:yarn run coveragecoverageLocations:|        ${{github.workspace}}/*.lcov:lcov

Example with Jacoco

steps:  -name:Test & publish code coverageuses:paambaati/codeclimate-action@v9.0.0env:# Set CC_TEST_REPORTER_ID as secret of your repoCC_TEST_REPORTER_ID:${{secrets.CC_TEST_REPORTER_ID}}JACOCO_SOURCE_PATH:"${{github.workspace}}/src/main/java"with:# The report file must be there, otherwise Code Climate won't find itcoverageCommand:mvn testcoverageLocations:${{github.workspace}}/target/site/jacoco/jacoco.xml:jacoco

Example of multiple test coverages for monorepo with Jest

Let's say you have a monorepo with two folders —client andserver, both with their own coverage folders and ayarn coverage script which runs Jest within both folders.

"scripts": {"coverage":"yarn client coverage && yarn server coverage"}

First be sure that paths in yourcoverage/lcov.info are correct; they should be either absolute or relative to theroot of the monorepo. Openlcov.info and search for any path. For example —

SF:src/server.ts

If you find arelative path like this (happens for Jest 25+), it's incorrect as it is relative to the sub-package. This can be fixed by configuring Jest to set the root of your monorepo —

// server/jest.config.jsmodule.exports={  ...coverageReporters:[['lcov',{projectRoot:'..'}]]...};
steps:  -name:Test & publish code coverageuses:paambaati/codeclimate-action@v9.0.0env:CC_TEST_REPORTER_ID:${{secrets.CC_TEST_REPORTER_ID}}with:coverageCommand:yarn run coveragecoverageLocations:|        ${{github.workspace}}/client/coverage/lcov.info:lcov        ${{github.workspace}}/server/coverage/lcov.info:lcov

Example projects

  1. paambaati/websight

  2. MartinNuc/coverage-ga-test

About

GitHub Action to send your code coverage to CodeClimate

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors20


[8]ページ先頭

©2009-2025 Movatter.jp