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