14 lines
211 B
YAML
14 lines
211 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: pipeline
|
|
|
|
steps:
|
|
- name: lint
|
|
image: golang:1.20
|
|
commands:
|
|
- make lint
|
|
|
|
- name: test with race and cover
|
|
image: golang:1.20
|
|
commands:
|
|
- make test |