Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
guyarb committed Sep 4, 2020
1 parent a4bd147 commit f9c6e0a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/post_run/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6797,8 +6797,8 @@ function runLint(lintPath, patchPath) {
core.setFailed(`golangci-lint exit with code ${exc.code}`);
}
}
core.info(`Ran golangci-lint in ${Date.now() - startedAt}ms`);
}
core.info(`Ran golangci-lint in ${Date.now() - startedAt}ms`);
});
}
function run() {
Expand Down
2 changes: 1 addition & 1 deletion dist/run/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6806,8 +6806,8 @@ function runLint(lintPath, patchPath) {
core.setFailed(`golangci-lint exit with code ${exc.code}`);
}
}
core.info(`Ran golangci-lint in ${Date.now() - startedAt}ms`);
}
core.info(`Ran golangci-lint in ${Date.now() - startedAt}ms`);
});
}
function run() {
Expand Down
3 changes: 1 addition & 2 deletions src/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,8 @@ async function runLint(lintPath: string, patchPath: string): Promise<void> {
core.setFailed(`golangci-lint exit with code ${exc.code}`)
}
}
core.info(`Ran golangci-lint in ${Date.now() - startedAt}ms`)
}

core.info(`Ran golangci-lint in ${Date.now() - startedAt}ms`)
}

export async function run(): Promise<void> {
Expand Down

0 comments on commit f9c6e0a

Please sign in to comment.