From ad792dd191c933c4100c87583fcbb44d8a3d7c40 Mon Sep 17 00:00:00 2001 From: Sean Lin Date: Fri, 10 Jun 2022 22:44:15 -0700 Subject: [PATCH] Fix "golangci-lint: not found" error in master "Run tests and lint" job (#267) Signed-off-by: Sean Lin --- flyteplugins/.github/workflows/master.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flyteplugins/.github/workflows/master.yml b/flyteplugins/.github/workflows/master.yml index c3483d0103..cdb374ef97 100644 --- a/flyteplugins/.github/workflows/master.yml +++ b/flyteplugins/.github/workflows/master.yml @@ -49,6 +49,10 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: "0" + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: '1.18' - name: Unit Tests run: make install && make test_unit_codecov - name: Push CodeCov