From fdc92ca3990efdfd14bfcb41ad9ef70a70afe8e6 Mon Sep 17 00:00:00 2001 From: islishude Date: Fri, 4 Aug 2023 12:39:50 +0800 Subject: [PATCH] ci: add `-v` param to go command --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index bcaeaf9..09627fd 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -11,5 +11,5 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v4 - - run: go build - - run: go test + - run: go build -v + - run: go test -v ./...