So this works when I copy my .golangci.yaml inside the dagger module.
config := dag.CurrentModule().Source().File(".golangci.yaml")
But I want that file inside the root of the project, I tried:
config := dag.CurrentModule().Source().Directory("..").File(".golangci.yaml")
But that doesn't seem to work, I think cause the file doesn't get transfered to the engine.
Thanks!