Skip to content

Commit

Permalink
Do not report coverage on benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
hlubek committed Jan 6, 2021
1 parent ada17cb commit 2598b40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Run tests
run: go test -v ./...
run: go test -v .

coverage:
runs-on: ubuntu-latest
Expand All @@ -51,7 +51,7 @@ jobs:
uses: actions/checkout@v2
- name: Calc coverage
run: |
go test -v -covermode=count -coverprofile=coverage.out ./...
go test -v -covermode=count -coverprofile=coverage.out .
- name: Convert coverage.out to coverage.lcov
uses: jandelgado/gcov2lcov-action@v1.0.6
- name: Coveralls
Expand Down

0 comments on commit 2598b40

Please sign in to comment.