From 6d2b24bba31b0e4e5fcd654869dcc9f38a86b027 Mon Sep 17 00:00:00 2001 From: Lowikian Date: Mon, 2 Jun 2025 10:15:00 +0200 Subject: [PATCH] try to fix tests --- .github/workflows/go-test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index b77d9d5..ce56ba9 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -22,7 +22,10 @@ jobs: run: go get . working-directory: ./src - name: Test with Go - run: go test -json > TestResults-${{ matrix.go-version }}.json + run: go test -json ./... > TestResults-${{ matrix.go-version }}.json + working-directory: ./src + - name: Print Test Results + run: cat TestResults-${{ matrix.go-version }}.json working-directory: ./src - name: Upload Go test results uses: actions/upload-artifact@v4