17 lines
329 B
YAML
17 lines
329 B
YAML
---
|
|
kind: pipeline
|
|
type: kubernetes
|
|
name: default
|
|
|
|
services:
|
|
- name: echo-server
|
|
image: ghcr.io/will-scargill/echo:latest
|
|
|
|
steps:
|
|
- name: test
|
|
image: golang:1.18
|
|
commands:
|
|
- curl -L https://vh7.uk/9kiw > waitfor.sh && chmod +x waitfor.sh
|
|
- ./waitfor.sh 127.0.0.1:16000 -t 60
|
|
- go test -v ./...
|
|
|