ci: remove golangci-lint checks from CI pipeline

Removed the golangci-lint installation and linting step from the GitHub Actions workflow, simplifying the CI pipeline.
This commit is contained in:
db123-test
2026-05-04 09:40:05 +03:30
parent e7d7c71572
commit 55cd06fb51

View File

@@ -20,12 +20,6 @@ jobs:
- name: Download dependencies - name: Download dependencies
run: go mod download run: go mod download
- name: Install golangci-lint
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b /usr/local/bin latest
- name: Run golangci-lint
run: golangci-lint run --timeout=3m
- name: Check formatting - name: Check formatting
run: | run: |
if [ "$(gofmt -l $(find . -name '*.go' -not -path './vendor/*'))" ]; then if [ "$(gofmt -l $(find . -name '*.go' -not -path './vendor/*'))" ]; then