I have a monorepo and am learning dagger ๐
apps/sync-clean-data/ is my first candidate
I now have a build and push that works locally and am integrating it with GitHub actions.
I have initialized from sync-clean-data/dagger with the name dagger/sync-clean-data
My problem is that I can not build from inside dagger nor test (which I am after for now).
build.go:24:2: package dagger/sync-clean-data/internal/dagger is not in std (/opt/homebrew/Cellar/go/1.23.5/libexec/src/dagger/sync-clean-data/internal/dagger)
Not sure how to handle this?
I did try to replace the import by dagger.io/dagger, but then the build and test were working ( I had to create dag and main but then dagger was broken ...)
Any help/best-practice would be helful and welcome.