From 8c41d9b32f12492f00f277377f63a1ea027b8fbc Mon Sep 17 00:00:00 2001 From: Taiwon Chung Date: Thu, 27 Jun 2024 16:33:46 -0400 Subject: [PATCH] fix: golangci-lint installation step in CI --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 5a900a71..2b690a36 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -56,7 +56,7 @@ jobs: name: Install golangci-lint with: version: latest - args: --version # make lint will run the linter + args: --help # make lint will run the linter - run: make lint name: Lint