golangci-lint-action icon indicating copy to clipboard operation
golangci-lint-action copied to clipboard

Official GitHub Action for golangci-lint from its authors

Results 67 golangci-lint-action issues
Sort by recently updated
recently updated
newest added
trafficstars

In the documentation, it says the execution of golangci-lint could take 1s or 35s without cache, but in my project, I am getting a bigger time to execute the command....

question

I try to configure golangci-lint-action to provide output in checkstyle format as required by SonarCloud (https://docs.sonarqube.org/latest/analysis/external-issues/). Therefore I added the following configuration to the project: ```yaml output: format: github-actions,checkstyle:golangci-lint-report.json ```...

enhancement

Since a couple of weeks we have been seeing repeatedly that the action does not report some violations while there are some in the code. ``` $ golangci-lint --version golangci-lint...

question

So i have raised a pr with lint issues like multiline and type check. When this flag `only-new-issues` is added, its not checking the linting errors which are introduced. When...

question

Hi folks, I'm using golangci as a GitHub Action matrix to scan multiple projects in a monorepo, one issue I've struggled with though is that when this is done annotations...

question

When I execute my GitHub Action workflow, all offenses are shown and not only the new ones. It might be related to the content of this PR: https://github.com/golangci/golangci-lint-action/pull/520 My GitHub...

question

On a recent PR, golangci-lint started complaining about files that we not part of the PR, that didn't actually need a goimports run (we ran it on the entire repo...

When setting the default working-directory of a job, `golangci-lint-action` does not respect this parameter. For example, I have the following project structure: ```bash ├── .github │   └── workflows │   └──...

We're facing a problem that the golangci-lint-action correctly works and found some issues in the PR code, but it won't produce any annotations in the PR. After some investigation, we...

area: cache

Please include the following information: Version of golangci-lint ```yaml - id: golangci_configuration uses: andstor/file-existence-action@v1 with: files: .golangci.yaml - name: Go Lint if: steps.golangci_configuration.outputs.files_exists == 'true' uses: golangci/golangci-lint-action@v2 with: version: v1.30...

area: output