fix(scaffolder): Fixing some small issues with CI workflows

This commit is contained in:
blam
2020-02-06 04:28:39 +01:00
parent 37ad61bb0d
commit aecd2f7e3f
2 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ func NewServer() *Server {
// Create scaffolds the repo in github and then will create push to the repository
func (s *Server) Create(ctx context.Context, req *pb.CreateRequest) (*pb.CreateReply, error) {
// first create the repository with github
fmt.Sprintln("Creating repository for Component %s", req.ComponentId)
fmt.Sprintf("Creating repository for Component %s", req.ComponentId)
repo := remote.Repository{
Name: req.ComponentId,
Org: req.Org,
+8
View File
@@ -0,0 +1,8 @@
package app
import (
"testing"
)
func TestSample(t *testing.T) {
}