echo-go/.drone.yml
Jake Walker 859bcf7e44
Some checks failed
continuous-integration/drone/push Build is failing
Merge branch 'main' of ssh://ssh.git.vh7.uk:222/jakew/echo-go
2022-08-10 18:26:56 +01:00

20 lines
388 B
YAML

---
kind: pipeline
type: kubernetes
name: default
services:
- name: echo-server
pull: always
image: ghcr.io/will-scargill/echo:latest
environment:
ECHO_MYSQL_DB: "1"
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 ./...