echo-go/.drone.yml
Jake Walker a258da3678
Some checks failed
continuous-integration/drone/push Build is failing
Initial commit
2022-08-03 18:22:47 +01:00

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 ./...