From 2505c287942ab490c6ce4f7dcdc9ed117d6a35e4 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Fri, 5 Apr 2024 22:05:30 +0100 Subject: [PATCH] Fix path for test running --- .gitea/workflows/go-test.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/go-test.yaml b/.gitea/workflows/go-test.yaml index 31ff3e2..845128b 100644 --- a/.gitea/workflows/go-test.yaml +++ b/.gitea/workflows/go-test.yaml @@ -17,4 +17,6 @@ jobs: go-version: '1.21' - name: Run tests - run: go test ./src/.. \ No newline at end of file + run: | + cd ./src + go test ./.. \ No newline at end of file