Fix problems parsing

This commit is contained in:
Denis Isaev
2020-05-04 19:39:04 +03:00
parent b030249340
commit f7d08adb03
5 changed files with 11 additions and 4 deletions

View File

@ -55,7 +55,7 @@ async function runLint(lintPath: string): Promise<void> {
throw new Error(`please, don't change out-format for golangci-lint: it can be broken in a future`)
}
const cmd = `${lintPath} run ${args}`.trimRight()
const cmd = `${lintPath} run --out-format=github-actions ${args}`.trimRight()
core.info(`Running [${cmd}] ...`)
const startedAt = Date.now()
try {