From 3e90913b08642da6e0af677ef28d1d31d85f59af Mon Sep 17 00:00:00 2001 From: Robin Bryce Date: Wed, 24 Jan 2024 08:35:03 +0100 Subject: [PATCH] fix: PATH for golangci-lint --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba1e330..68469d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ on: jobs: test: - name: Build and Release + name: Code quality and unit tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -27,6 +27,7 @@ jobs: run: | go install golang.org/x/tools/cmd/goimports@latest curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "${PWD}/bin" v1.55.2 + echo "${PWD}/bin" >> $GITHUB_PATH - name: Code Quality run: |