27 lines
471 B
YAML
27 lines
471 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:
|
|
- name: redis
|
|
image: redis:latest
|
|
|
|
trigger:
|
|
branch:
|
|
- main |