71
Some checks failed
Go Linter / Tag Commit (push) Successful in 28s
Deploy Production / Deploy to Staging (push) Has been skipped
Go Linter / Run golangci-lint (api_gateway) (push) Successful in 4m13s
Go Linter / Push Docker Images (api_gateway) (push) Failing after 1m57s
Go Linter / Build golang services (api_gateway) (push) Failing after 2m5s

This commit is contained in:
Alex Shevchuk
2025-09-17 14:59:21 +03:00
parent f46b07c210
commit 5d10849397

View File

@@ -27,11 +27,16 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '>=1.24.0'
go-version: '1.24.x'
check-latest: true
- name: Enable Go toolchain auto
run: echo "GOTOOLCHAIN=auto" >> $GITHUB_ENV
- name: Install golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.62.2
echo "Installing golangci-lint v1.62.2 with $(go version)"
GOBIN=$(go env GOPATH)/bin go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.62.2
- name: Run golangci-lint
run: |