trying to fix dockerci lint step
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-06-23 18:38:28 +03:00
parent 2d4d7c2813
commit 2507a1531e

View File

@@ -14,15 +14,17 @@ steps:
image: golang:1.24-alpine
commands:
- go mod download
- go mod tidy
- name: lint
image: golangci/golangci-lint:v1.59-alpine
image: golangci/golangci-lint:v1.64-alpine
commands:
- golangci-lint run --timeout=5m --verbose ./...
- name: test
image: golang:1.24-alpine
commands:
- go test -race -cover ./...
- apk add --no-cache build-base
- CGO_ENABLED=1 go test -race -cover ./...
# Шаг сборки и публикации будет добавлен позже
# - name: build-and-publish
# image: plugins/docker