(info ProjectInfo)
| 95 | } |
| 96 | |
| 97 | func detectWorkspaceCommands(info ProjectInfo) *models.WorkspaceCommands { |
| 98 | return &models.WorkspaceCommands{ |
| 99 | Setup: info.SetupCmd, |
| 100 | Build: info.BuildCmd, |
| 101 | Test: info.TestCmd, |
| 102 | Lint: info.LintCmd, |
| 103 | Dev: info.DevCmd, |
| 104 | Start: info.DevCmd, |
| 105 | Web: info.WebBuildCmd, |
| 106 | Format: "", |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | func detectWorkspaceDeployment(cfg *config.Config) *models.WorkspaceDeployment { |
| 111 | if cfg == nil { |
no outgoing calls
no test coverage detected