mirror of
https://github.com/golangci/golangci-lint-action.git
synced 2025-12-14 23:11:14 +00:00
* Remove Setup-Go Signed-off-by: Steve Coffman <steve@khanacademy.org> * Add setup-go to test github actions Signed-off-by: Steve Coffman <steve@khanacademy.org> * Modify README and action.yml per review Signed-off-by: Steve Coffman <steve@khanacademy.org> * build dist Co-authored-by: Sergey Vilgelm <sergey@vilgelm.com>
9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
declare module "cache/lib/restore" {
|
|
function run(): Promise<void>
|
|
export default run
|
|
}
|
|
|
|
declare module "cache/lib/save" {
|
|
function run(): Promise<void>
|
|
export default run
|
|
}
|