2022-06-06 16:48:53 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: kubernetes
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: backend
|
2024-11-18 19:52:26 +00:00
|
|
|
image: golang:1.23
|
2022-06-06 16:48:53 +00:00
|
|
|
commands:
|
|
|
|
- go install honnef.co/go/tools/cmd/staticcheck@latest
|
|
|
|
- go build ./...
|
|
|
|
- go vet ./...
|
|
|
|
- staticcheck ./...
|
|
|
|
- go test -bench=. -benchmem -cover ./...
|