dnsupdater/.gitlab-ci.yml
2020-10-26 21:50:50 +04:00

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