This repository has been archived on 2022-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
|
---
|
|
kind: pipeline
|
|
type: kubernetes
|
|
name: default
|
|
|
|
steps:
|
|
- name: backend
|
|
image: golang:1.18
|
|
commands:
|
|
- go install honnef.co/go/tools/cmd/staticcheck@latest
|
|
- go build ./...
|
|
- go vet ./...
|
|
- staticcheck ./...
|
|
- go test -bench=. -benchmem -cover ./...
|