Integrating golang ci lint report in Jenkins #4442
Answered
by
bombsimon
arthurvaverko
asked this question in
Q&A
-
We are using jenkins for our CI .. i was wondering what report tools do you use to view the lint errors and warnings in Jenkins ? |
Beta Was this translation helpful? Give feedback.
Answered by
bombsimon
Mar 3, 2024
Replies: 1 comment
-
You can use the JUnit plugin for Jenkins and then use And by just googling now I found |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ldez
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use the JUnit plugin for Jenkins and then use
junit-xml
as out format forgolangci-lint
.And by just googling now I found
jenkinsci/warnings-ng-plugin
that supports checkstyle whichgolangci-lint
will report if you set out format tocheckstyle
.