22 lines
308 B
YAML
22 lines
308 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: deploy
|
||
|
|
||
|
steps:
|
||
|
- name: fetch
|
||
|
image: alpine/git
|
||
|
commands:
|
||
|
- git fetch --tags
|
||
|
|
||
|
|
||
|
- name: test
|
||
|
image: golang:1.20-alpine
|
||
|
commands:
|
||
|
- apk --update --no-cache add make tzdata git
|
||
|
- make test
|
||
|
- make benchmark
|
||
|
|
||
|
node:
|
||
|
host: devcloud
|