Skip to content

Commit

Permalink
doc: Mention setting up the Go environment DOCS-380
Browse files Browse the repository at this point in the history
  • Loading branch information
Paulo Ribeiro committed Aug 18, 2022
1 parent 570228a commit 0433563
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0433563

Please sign in to comment.