TPT-2509: Use official golangci-lint GitHub Action - #158
Merged
zliang-akamai merged 1 commit intoSep 9, 2026
Merged
Conversation
zliang-akamai
requested review from
lgarber-akamai and
psnoch-akamai
and
a lite review from Copilot
and removed request for
a team
August 29, 2026 03:45
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the repository’s linting workflow by moving CI lint execution off the Makefile/Docker-based make lint path and onto the official golangci/golangci-lint-action, while keeping local linting as a direct golangci-lint CLI invocation.
Changes:
- Remove the Docker/
SKIP_DOCKERbranch frommake lintso linting always uses the localgolangci-lintbinary. - Switch the CI workflow lint step to
golangci/golangci-lint-action. - Update agent guidance to reflect the new local lint expectation.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| Makefile | Simplifies lint to always run local golangci-lint (removes Docker/SKIP_DOCKER path). |
| AGENTS.md | Updates lint command documentation to match the Makefile/CI changes. |
| .github/workflows/ci.yml | Replaces make lint with the official golangci-lint GitHub Action step in CI. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
lgarber-akamai
approved these changes
Aug 31, 2026
psnoch-akamai
approved these changes
Sep 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📝 Description
Switch CI linting from
make lint(Dockergolangci/golangci-lint) to the officialgolangci/golangci-lint-action. Keep localmake linton the hostgolangci-lintCLI and drop the Docker/SKIP_DOCKERMakefile path.✔️ How to Test
Confirm the
CIworkflow golangci-lint job succeeds on this PR.