Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: ./
with:
working-directory: testdata
version: v1.0.4
version: v1.0.6
- name: Diff
run: diff -y coverage_expected.lcov coverage.lcov
working-directory: testdata
Expand Down
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
# gcov2lcov-action

[![Build Status](https://github.com/jandelgado/gcov2lcov-action/workflows/test/badge.svg)](https://github.com/jandelgado/gcov2lcov-action/actions?workflow=test)
<table><tr><td>
<h2>NOTE</h2>
<b>
The <a href="https://github.com/coverallsapp/github-action">coverallsapp-action</a>
now supports the golang coverage format out of the box. You probably won't need
this action anymore. Example:
</b>

```yaml
- name: Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}
file: coverage.out
format: golang
```
</td></tr></table>

## What

Convert golang coverage files to lcov format. Works nicely with the [coveralls
github action](https://github.com/marketplace/actions/coveralls-github-action) and
Expand Down