17 lines
225 B
YAML
17 lines
225 B
YAML
kind: pipeline
|
|
name: Test
|
|
type: docker
|
|
|
|
steps:
|
|
- name: test
|
|
image: golang
|
|
commands:
|
|
- go test
|
|
- go build
|
|
|
|
- name: publish
|
|
image: plugins/docker
|
|
settings:
|
|
repo: octocat/hello-world
|
|
tags: [ latest, 1.0, 1 ]
|