echo-go/.drone.yml

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