From c2e5037d2f8f7bfff606e35216eb3c561ad40e1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Luis=20Segura=20Lucas?= Date: Thu, 7 May 2026 08:05:12 +0200 Subject: [PATCH] Add GOENV to the workflows execution path --- .github/workflows/gotests.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/gotests.yaml b/.github/workflows/gotests.yaml index 7c30013..ae1f5f0 100644 --- a/.github/workflows/gotests.yaml +++ b/.github/workflows/gotests.yaml @@ -42,6 +42,9 @@ jobs: name: Go tests steps: - uses: actions/checkout@v6 + - name: Prepare Go env + run: echo "$(go env GOPATH)/bin" >> ${GITHUB_PATH} + - name: Unit tests run: make test