Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jandelgado committed May 23, 2022
1 parent fc567b7 commit 041a332
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog for gcov2lcov-action

## 1.0.9 [2022-05-23]

- fix: always set `GOROOT` before invoking `gcov2lcov` (#13)

## 1.0.8 [2020-11-05]

- fix: use correct download link when specific version of gcov2lcov is set (#11)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ No outputs.
## Example usage

```yaml
uses: jandelgado/gcov2lcov-action@v1.0.5
uses: jandelgado/gcov2lcov-action@v1
with:
infile: coverage.out # optional, default filename is `coverage.out`
outfile: coverage.lcov # optional, default filename is `coverage.lcov`
Expand All @@ -47,17 +47,17 @@ coverage:
steps:
- name: Install Go
if: success()
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.15.x
go-version: 1.18
- name: Checkout code
uses: actions/checkout@v2
- name: Calc coverage
run: go test -v -covermode=count -coverprofile=coverage.out
- name: Convert coverage to lcov
uses: jandelgado/gcov2lcov-action@v1.0.5
uses: jandelgado/gcov2lcov-action@v1
- name: Coveralls
uses: coverallsapp/github-action@v1.0.4
uses: coverallsapp/github-action@v1.1.3
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: coverage.lcov
Expand All @@ -67,7 +67,7 @@ See also [example repository](https://github.com/jandelgado/golang-ci-template-g

## Author

Copyright © 2019 - 2020 Jan Delgado
Copyright © 2019 - 2022 Jan Delgado

## License

Expand Down

0 comments on commit 041a332

Please sign in to comment.