10 lines
176 B
YAML
10 lines
176 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: lint
|
|
image: golang:1.12
|
|
commands:
|
|
#- make lint won't run in china
|
|
- make golangci-lint
|
|
- make fmt-check |