15 lines
273 B
YAML
15 lines
273 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: kubernetes
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: test
|
||
|
image: golang:1.18
|
||
|
commands:
|
||
|
- go install honnef.co/go/tools/cmd/staticcheck@latest
|
||
|
- go build ./...
|
||
|
- go vet ./...
|
||
|
- staticcheck ./...
|
||
|
- go test -bench=. -benchmem -cover ./...
|