14 lines
213 B
YAML
14 lines
213 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: lint
|
|
image: golangci/golangci-lint
|
|
commands:
|
|
- golangci-lint run
|
|
- name: build
|
|
image: golang
|
|
commands:
|
|
- go build ./cmd/bb
|