18 lines
247 B
YAML
18 lines
247 B
YAML
stages:
|
|
- test
|
|
- build
|
|
|
|
test:
|
|
stage: test
|
|
image: golang:1.15.3-alpine3.12
|
|
script:
|
|
- go test ./...
|
|
|
|
build:
|
|
stage: build
|
|
image: docker:latest
|
|
services:
|
|
- docker:dind
|
|
script:
|
|
docker build -t llehouerou/dnsupdater:latest
|