From 89d8b6fd7879477e8ba027c4d7361227547fda82 Mon Sep 17 00:00:00 2001 From: Slug-Boi Date: Fri, 17 May 2024 21:45:56 +0200 Subject: [PATCH] update dagger workflow with new go mod path --- ci/test_on_push.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test_on_push.go b/ci/test_on_push.go index 3181d04..a18e8ff 100644 --- a/ci/test_on_push.go +++ b/ci/test_on_push.go @@ -31,7 +31,7 @@ func main() { // set the working directory in the container // install application dependencies - runner := source.WithWorkdir("/src"). + runner := source.WithWorkdir("/src/src_code/go_src/"). WithExec([]string{"go", "mod", "tidy"}) // run application tests