14 lines
177 B
YAML
14 lines
177 B
YAML
kind: pipeline
|
|
name: test
|
|
|
|
steps:
|
|
- name: build
|
|
image: golang:1.12
|
|
commands:
|
|
- make build
|
|
|
|
- name: test
|
|
image: golang:1.12
|
|
commands:
|
|
- make test
|