Skip to content

Commit 9a62e29

Browse files
authored
test with release 1.0.6 (#15)
* test release 1.0.6 * add deprecation
1 parent c680c0f commit 9a62e29

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: ./
2222
with:
2323
working-directory: testdata
24-
version: v1.0.4
24+
version: v1.0.6
2525
- name: Diff
2626
run: diff -y coverage_expected.lcov coverage.lcov
2727
working-directory: testdata

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
# gcov2lcov-action
22

33
[![Build Status](https://github.com/jandelgado/gcov2lcov-action/workflows/test/badge.svg)](https://github.com/jandelgado/gcov2lcov-action/actions?workflow=test)
4+
<table><tr><td>
5+
<h2>NOTE</h2>
6+
<b>
7+
The <a href="https://github.com/coverallsapp/github-action">coverallsapp-action</a>
8+
now supports the golang coverage format out of the box. You probably won't need
9+
this action anymore. Example:
10+
</b>
11+
12+
```yaml
13+
- name: Coveralls
14+
uses: coverallsapp/[email protected]
15+
with:
16+
github-token: ${{ secrets.github_token }}
17+
file: coverage.out
18+
format: golang
19+
```
20+
</td></tr></table>
21+
22+
## What
423
524
Convert golang coverage files to lcov format. Works nicely with the [coveralls
625
github action](https://github.com/marketplace/actions/coveralls-github-action) and

0 commit comments

Comments
 (0)