From 872125f3b4cf2c9818888f43785a9f73b950a750 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Fri, 5 Apr 2024 22:01:03 +0100 Subject: [PATCH] Fix action to run tests in correct directory --- .gitea/workflows/go-test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/go-test.yaml b/.gitea/workflows/go-test.yaml index 0c913b1..31ff3e2 100644 --- a/.gitea/workflows/go-test.yaml +++ b/.gitea/workflows/go-test.yaml @@ -14,7 +14,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: 1.21 + go-version: '1.21' - name: Run tests - run: go test ./.. \ No newline at end of file + run: go test ./src/.. \ No newline at end of file