Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: Add note for Go module names #2141

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ bash <(curl -Ls https://coverage.codacy.com/get.sh) report \
--force-coverage-parser go -r unit.coverage.out
```

!!! note
The module should match the project directory name. For example, a directory structure of `my-project/go.mod` should have `module my-project` or `module github.com/myusername/myrepo/my-project` instead of `module myproject` at the top of `go.mod`.

## Uploading coverage for unsupported languages {: id="unsupported-languages"}

If your language isn't in the [list of supported languages](index.md#generating-coverage), you can still send coverage to Codacy.
Expand Down
Loading