Skip to content

Commit

Permalink
Update gcov2lcov to 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jandelgado committed Sep 11, 2020
1 parent 6fa09e7 commit 95058c4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 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.3 [2020-09-11]

* bump to gcov2lcov 1.0.3

## 1.0.2 [2020-04-25]

* bump to gcov2lcov 1.0.2 to address coverage calculation problem
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ LABEL "com.github.actions.color"="blue"
WORKDIR /go/src/app
ADD . /go/src/app

RUN GO111MODULE=on go get -u github.com/jandelgado/gcov2lcov@v1.0.2
RUN GO111MODULE=on go get -u github.com/jandelgado/gcov2lcov@v1.0.3

COPY entrypoint.sh /

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ No outputs.
## Example usage

```yaml
uses: jandelgado/gcov2lcov-action@v1.0.2
uses: jandelgado/gcov2lcov-action@v1.0.3
with:
infile: coverage.out
outfile: coverage.lcov
Expand All @@ -47,12 +47,12 @@ with:
export PATH=$PATH:$(go env GOPATH)/bin
go test -v -covermode=count -coverprofile=coverage.out
- name: Convert coverage to lcov
uses: jandelgado/gcov2lcov-action@v1.0.2
uses: jandelgado/gcov2lcov-action@v1.0.3
with:
infile: coverage.out
outfile: coverage.lcov
- name: Coveralls
uses: coverallsapp/github-action@v1.0.2
uses: coverallsapp/github-action@v1.0.3
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: coverage.lcov
Expand Down

0 comments on commit 95058c4

Please sign in to comment.