From 93997249e4db4712d476cfaf5237ec1c1c49c872 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Abdelkader=20Mart=C3=ADnez=20P=C3=A9rez?= Date: Fri, 20 Jan 2023 11:48:23 +0100 Subject: [PATCH] chore: skip-go-installation to avoid error. remove build before lint https://github.com/golangci/golangci-lint-action/issues/434#issuecomment-1086127909 --- .github/workflows/test_and_release.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test_and_release.yml b/.github/workflows/test_and_release.yml index 017147e..0980ee8 100644 --- a/.github/workflows/test_and_release.yml +++ b/.github/workflows/test_and_release.yml @@ -13,13 +13,11 @@ jobs: - uses: actions/setup-go@v2 with: go-version: ${{ steps.go-version.outputs.go-version }} - - name: Build executable - run: | - make build - name: Lint uses: golangci/golangci-lint-action@v3.3.1 with: version: v1.31 + skip-go-installation: true - name: Unit tests run: | make test race