15 lines
192 B
YAML
15 lines
192 B
YAML
|
---
|
||
|
# Test building the code and docker image
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: test-build
|
||
|
|
||
|
steps:
|
||
|
- name: go-test
|
||
|
image: golang
|
||
|
commands:
|
||
|
- make test
|
||
|
depends_on:
|
||
|
|
||
|
# TODO: publish doc
|