mirror of
https://github.com/golangci/golangci-lint-action.git
synced 2025-12-14 23:11:14 +00:00
fix: update log message for golangci-lint execution
This commit is contained in:
parent
14973f18c8
commit
303eabf9c2
3 changed files with 3555 additions and 3555 deletions
2
dist/post_run/index.js
generated
vendored
2
dist/post_run/index.js
generated
vendored
|
|
@ -94243,7 +94243,7 @@ async function runLint(binPath, patchPath) {
|
||||||
core.setFailed(`golangci-lint exit with code ${exc.code}`);
|
core.setFailed(`golangci-lint exit with code ${exc.code}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
core.info(`Ran golangci-lint in ${Date.now() - startedAt}ms`);
|
core.info(`Run golangci-lint in ${Date.now() - startedAt}ms`);
|
||||||
}
|
}
|
||||||
async function runVerify(binPath, userArgsMap, cmdArgs) {
|
async function runVerify(binPath, userArgsMap, cmdArgs) {
|
||||||
const verify = core.getBooleanInput(`verify`, { required: true });
|
const verify = core.getBooleanInput(`verify`, { required: true });
|
||||||
|
|
|
||||||
2
dist/run/index.js
generated
vendored
2
dist/run/index.js
generated
vendored
|
|
@ -94243,7 +94243,7 @@ async function runLint(binPath, patchPath) {
|
||||||
core.setFailed(`golangci-lint exit with code ${exc.code}`);
|
core.setFailed(`golangci-lint exit with code ${exc.code}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
core.info(`Ran golangci-lint in ${Date.now() - startedAt}ms`);
|
core.info(`Run golangci-lint in ${Date.now() - startedAt}ms`);
|
||||||
}
|
}
|
||||||
async function runVerify(binPath, userArgsMap, cmdArgs) {
|
async function runVerify(binPath, userArgsMap, cmdArgs) {
|
||||||
const verify = core.getBooleanInput(`verify`, { required: true });
|
const verify = core.getBooleanInput(`verify`, { required: true });
|
||||||
|
|
|
||||||
|
|
@ -153,7 +153,7 @@ async function runLint(binPath: string, patchPath: string): Promise<void> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
core.info(`Ran golangci-lint in ${Date.now() - startedAt}ms`)
|
core.info(`Run golangci-lint in ${Date.now() - startedAt}ms`)
|
||||||
}
|
}
|
||||||
|
|
||||||
async function runVerify(binPath: string, userArgsMap: Map<string, string>, cmdArgs: ExecOptionsWithStringEncoding): Promise<void> {
|
async function runVerify(binPath: string, userArgsMap: Map<string, string>, cmdArgs: ExecOptionsWithStringEncoding): Promise<void> {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue