tasks/.drone.yml
Андрей Иванов deebeefd03
Some checks failed
continuous-integration/drone/push Build is failing
fix linter
2025-07-30 15:09:04 +03:00

22 lines
522 B
YAML

kind: pipeline
type: docker
name: pipeline
steps:
- name: simple tests
image: golang:1.23.10
commands:
- go test ./...
- name: race tests
image: golang:1.23.10
commands:
- go test -race -count 100 -timeout 30s ./...
- name: benchmark
image: golang:1.23.10
commands:
- go test -benchtime=10x -benchmem -bench=Benchmark ./... | grep allocs || true
- name: lint
image: golangci/golangci-lint:v1.61.0
commands:
- golangci-lint run --config=./golangci.yml ./...