Skip to content

Commit

Permalink
Dont print verbose output for tests (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maelkum authored Apr 12, 2023
1 parent bf688d5 commit 6e00e82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- name: Run Test
run: |
go test -v ./... -covermode=count -coverprofile=coverage.out
go test ./... -covermode=count -coverprofile=coverage.out
go tool cover -func=coverage.out -o=coverage.out
- name: Go Coverage Badge # Pass the `coverage.out` output to this action
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ jobs:

- name: Run Test
run: |
go test -v ./... -covermode=count -coverprofile=coverage.out
go test ./... -covermode=count -coverprofile=coverage.out
go tool cover -func=coverage.out -o=coverage.out

0 comments on commit 6e00e82

Please sign in to comment.