Has anybody had luck using the Go SDK with a go.mod and go.sum file inside a subdirectory?
I saw this post from last year along similar lines with no solution - #1149931371830198323 message
I love the Go SDK because it forces me to handle errors and problems up-front where Python is a lot more relaxed - but putting a go.mod in the root dir is an annoyance that I would prefer to avoid.
A workaround that I have working is to make a symlink at runtime, right before invoking the pipeline. But that feels pretty weird.
I am doing just fine with Python at the moment, and for some clients this is the preferred language for their other DevOps folks.