(dir: string)
| 54 | } |
| 55 | |
| 56 | async function buildGo(dir: string): Promise<StepResult[]> { |
| 57 | const steps: StepResult[] = []; |
| 58 | const build = await runStep('build', 'go', ['build'], dir); |
| 59 | steps.push(build); |
| 60 | if (!build.success) return steps; |
| 61 | |
| 62 | steps.push(await runStep('test', 'go', ['test', './...'], dir)); |
| 63 | return steps; |
| 64 | } |
| 65 | |
| 66 | async function buildCsharp(dir: string): Promise<StepResult[]> { |
| 67 | const steps: StepResult[] = []; |
no test coverage detected