From 0433563694dd8a71552a6e2e88e2fcb32f6ad7f1 Mon Sep 17 00:00:00 2001 From: Paulo Ribeiro Date: Thu, 18 Aug 2022 17:56:50 +0100 Subject: [PATCH] doc: Mention setting up the Go environment DOCS-380 --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index f4c9a2d..d03e89a 100644 --- a/README.md +++ b/README.md @@ -147,6 +147,16 @@ To use the GitHub Action with Codacy integration: max-allowed-issues: 2147483647 ``` + **If you're running a Go client-side tool** you must also set up the Go environment before running the Codacy Analysis CLI GitHub Action. We recommend using the [setup-go](https://github.com/actions/setup-go) GitHub Action: + + ```yaml + - name: set-up go + uses: actions/setup-go@v3 + with: + # Go version required by the tools currently supported by Codacy + go-version: 1.13.8 + ``` + 4. Optionally, specify the following parameters to run [**standalone** client-side tools](https://docs.codacy.com/related-tools/local-analysis/client-side-tools/): ```yaml