From 6603fa979d520a4a9116085cd8f4a67702ed371d Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Fri, 5 Apr 2024 22:10:26 +0100 Subject: [PATCH] Fix test command (was go test ./.., now go test ./...) --- .gitea/workflows/go-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/go-test.yaml b/.gitea/workflows/go-test.yaml index 03c59ef..462866e 100644 --- a/.gitea/workflows/go-test.yaml +++ b/.gitea/workflows/go-test.yaml @@ -17,4 +17,4 @@ jobs: go-version: '1.21' - name: Run tests - run: cd ./src && go test ./.. \ No newline at end of file + run: go test ./... \ No newline at end of file