...

/

Integrating with CircleCI

Integrating with CircleCI

Learn how to leverage testing coverage thresholds inside of CircleCI.

CircleCI is a tool for CI/CD that, unlike GitHub Actions, is not tied to a specific code repository platform. CircleCI can automate code workflows such as rules around merged code and application deployment. CircleCI uses YAML files —to define these workflows.

How can we use testing coverage inside CircleCI?

CircleCI allows us to automate testing and to surface the results of these tests prior to merging new code. Since the greatest benefit of tests is the continual assurance that our new code has not broken existing code, the automation of this is extremely beneficial. We can focus on development and let our CI/CD service remind us of the boxes we need to check before moving ahead. Using CircleCI, we can check that our tests are passing and that our test coverage ...