ci: do not run the unit tests with verbose on
When unit tests succeed, no one cares about them. When unit tests fail, it's hard to find which one failed. This commit removes the verbose flag, so it's easy to spot what failed. Signed-off-by: Ondřej Budai <ondrej@budai.cz>
This commit is contained in:
parent
728f2d0f81
commit
ab773975ea
1 changed files with 1 additions and 1 deletions
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
|
@ -48,7 +48,7 @@ jobs:
|
|||
run: $(go env GOPATH)/bin/golangci-lint run --timeout 5m0s
|
||||
|
||||
- name: Run unit tests
|
||||
run: go test -v -race -covermode=atomic -coverprofile=coverage.txt -coverpkg=./... ./...
|
||||
run: go test -race -covermode=atomic -coverprofile=coverage.txt -coverpkg=./... ./...
|
||||
|
||||
- name: Send coverage to codecov.io
|
||||
run: bash <(curl -s https://codecov.io/bash)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue