15 lines
206 B
YAML
15 lines
206 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: Test
|
||
|
image: golang
|
||
|
commands:
|
||
|
- go test ./...
|
||
|
- name: Build
|
||
|
image: golang
|
||
|
commands:
|
||
|
- go build ./
|
||
|
- ls -lah
|