From 0e626fb1797e458cc80f288035c8d09199b1bec8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=93=82=E5=B1=91?= <80164656+boxie123@users.noreply.github.com> Date: Thu, 28 Dec 2023 21:20:23 +0800 Subject: [PATCH] Update go.yml --- .github/workflows/go.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index a11121b..cb72e96 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -25,10 +25,10 @@ jobs: run: go mod tidy - name: Test with Go - run: go test -json -v ./... > TestResults-${{ matrix.go-version }}.json + run: go test -json -v ./... > TestResults.json - name: Upload Go test results uses: actions/upload-artifact@v3 with: - name: Go-results-${{ matrix.go-version }} - path: TestResults-${{ matrix.go-version }}.json + name: Go-results + path: TestResults.json