15 lines
No EOL
206 B
YAML
15 lines
No EOL
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 |