chore(ci): disable lint job in CI workflow

Commented out the lint job in the GitHub Actions CI workflow to temporarily exclude it from the pipeline execution. This change removes the Go linting step using golangci-lint while keeping the job definition intact for potential future re-enablement.

lemon-mint committed Nov 5, 2025 at 09:36 UTC 7cf650da096feb8cae1e74fab7ed88e74d18a932
1 file changed +18 -18
.github/workflows/ci.yml
+18 -18
@@ -96,21 +96,21 @@ jobs:
96 run: |
97 docker build -t relaydns:test .
98
99 - lint:
100 - name: Lint
101 - runs-on: ubuntu-latest
102 -
103 - steps:
104 - - name: Checkout code
105 - uses: actions/checkout@v5
106 -
107 - - name: Set up Go
108 - uses: actions/setup-go@v6
109 - with:
110 - go-version: "stable"
111 - check-latest: true
112 -
113 - - name: golangci-lint
114 - uses: golangci/golangci-lint-action@v8
115 - with:
116 - version: v2.6.0
99 +# lint:
100 +# name: Lint
101 +# runs-on: ubuntu-latest
102 +#
103 +# steps:
104 +# - name: Checkout code
105 +# uses: actions/checkout@v5
106 +#
107 +# - name: Set up Go
108 +# uses: actions/setup-go@v6
109 +# with:
110 +# go-version: "stable"
111 +# check-latest: true
112 +#
113 +# - name: golangci-lint
114 +# uses: golangci/golangci-lint-action@v8
115 +# with:
116 +# version: v2.6.0