From ab773975ea60aac431aefb7b267923628c2ef3dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Sat, 13 Feb 2021 12:47:22 +0100 Subject: [PATCH] ci: do not run the unit tests with verbose on MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8feba71ab..ec39e4b87 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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)