Some checks failed
continuous-integration/drone Build encountered an error
35 lines
629 B
YAML
35 lines
629 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: go test
|
|
image: golang:1.25-alpine3.21
|
|
commands:
|
|
- apk add --no-cache git curl
|
|
- go mod tidy
|
|
- go test ./...
|
|
|
|
- name: build docker image
|
|
image: docker:24-dind
|
|
privileged: true
|
|
environment:
|
|
DOCKER_HOST: tcp://localhost:2375
|
|
commands:
|
|
- docker build -t link-shortener:latest .
|
|
|
|
services:
|
|
redis:
|
|
image: redis:latest
|
|
ports:
|
|
- 6379:6379
|
|
healthcheck:
|
|
test: ["CMD", "redis-cli", "ping"]
|
|
interval: 5s
|
|
timeout: 3s
|
|
retries: 5
|
|
start_period: 10s
|
|
|
|
trigger:
|
|
branch:
|
|
- main |