Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sudo-bot/action-kcov
A GitHub action for kcov
https://github.com/sudo-bot/action-kcov
coverage github-actions kcov
Last synced: 1 day ago
JSON representation
A GitHub action for kcov
- Host: GitHub
- URL: https://github.com/sudo-bot/action-kcov
- Owner: sudo-bot
- License: mpl-2.0
- Created: 2020-12-21T22:18:13.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-07-15T11:26:34.000Z (7 months ago)
- Last Synced: 2025-01-01T08:41:35.623Z (29 days ago)
- Topics: coverage, github-actions, kcov
- Homepage: https://github.com/SimonKagstrom/kcov#readme
- Size: 18.6 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# action-kcov
[![codecov](https://codecov.io/gh/sudo-bot/action-kcov/graph/badge.svg?token=NIDQPVEDWG)](https://codecov.io/gh/sudo-bot/action-kcov)
A GitHub action for kcov
## Example usage
```yml
name: Run testspermissions:
contents: readon: [push]
jobs:
test:
name: Test the action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4- name: Example with a bash script (running on Docker kcov/kcov:latest)
uses: sudo-bot/action-kcov@latest
with:
cli-args: "--dump-summary ./coverage ./.github/workflows/test.sh"- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
# Must be set in the repo or org settings as a secret
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage/
fail_ci_if_error: true
```