diff --git a/ci/build_test_release.go b/ci/build_test_release.go index 5d1c640..acf3f27 100644 --- a/ci/build_test_release.go +++ b/ci/build_test_release.go @@ -1,4 +1,4 @@ -package main +package ci import ( "context" @@ -34,7 +34,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 diff --git a/ci/test_on_push.go b/ci/test_on_push.go index a18e8ff..8589470 100644 --- a/ci/test_on_push.go +++ b/ci/test_on_push.go @@ -1,4 +1,4 @@ -package main +package ci import ( "context"