11 lines
140 B
YAML
11 lines
140 B
YAML
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: utils
|
||
|
|
||
|
steps:
|
||
|
- name: test
|
||
|
image: golang:1.18
|
||
|
commands:
|
||
|
- go get ./...
|
||
|
- go test -v ./...
|