github.com/tilotech/tilores-cli@v0.28.0/internal/pkg/step/buildverify.go (about)

     1  package step
     2  
     3  // BuildVerify creates a step that ensures the validity of the generated project.
     4  func BuildVerify() error {
     5  	return runCommand(
     6  		"failed to verify project by running go build: %v",
     7  		createCommand("go", "build", "./..."),
     8  	)()
     9  }