Exploring the Workflow Badges in GitHub
Workflow badges provide a visual indicator of the status of workflows (e.g., build status, test results) directly within your repository. These badges help developers and collaborators quickly understand the health of the CI/CD pipeline at a glance.
Types of Workflow Badges in GitHub
Status Badge: Displays the latest status of a workflow run.
Coverage Badge: Displays test coverage results.
Performance Badge: Displays performance metrics from CI workflows.
1. Status Badge
The Status Badge shows the result of the most recent workflow run (e.g., success, failure, in-progress).
Example: Adding a Status Badge
Navigate to the Actions tab of your repository.
Select the workflow you want to display a badge for.
Click on Badge at the top of the workflow.
Copy the badge Markdown or HTML snippet.
Markdown:
xxxxxxxxxx
11
Example in README:
xxxxxxxxxx
11
2. Coverage Badge
The Coverage Badge shows the code coverage percentage from tests run in CI workflows. You can use tools like coverage.py
or cobertura
for generating test coverage reports.
Example: Generating a Coverage Badge
Run tests with coverage using a tool like
pycov
:xxxxxxxxxx
11pytest --cov=./
Upload coverage reports:
xxxxxxxxxx
111jobs
2test
3steps
4name Checkout Repository
5uses actions/checkout@v3
6name Run Tests
7run pytest --cov=.
8name Upload Coverage Report
9uses codecov/codecov-action@v3
10with
11files ./coverage.xml
Use the badge in your README:
xxxxxxxxxx
11
3. Performance Badge
The Performance Badge shows performance metrics (e.g., load time, response time) for CI/CD workflows. This is often integrated with tools like K6, Gatling, or other performance testing frameworks.
Example: Generating a Performance Badge
Use a performance testing tool within your CI workflow.
Generate a report and display performance results.
Adding Workflow Badges to Your Repository
Markdown Badge: Simple and widely used to display workflow status.
Embedded in README: Typically used in project documentation or CI/CD pipelines.
Customizing Badges
Custom Icons: Some workflows support custom badges using SVG or PNG files.
Colors and Custom Labels: Customize colors and labels using Markdown for dynamic badges.
Example: Adding Badges to a README
xxxxxxxxxx
31# My Project
2
3
Benefits of Workflow Badges
Visibility: Provides a quick overview of the workflow status.
Transparency: Keeps stakeholders informed about the latest workflow results.
Automation: Automatically updated with each CI run, ensuring real-time insights.
Leave a Reply