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

18 lines
236 B
YAML

stages:
- test
- build
test:
stage: test
image: golang:1.15.3
script:
- go test ./...
build:
stage: build
image: docker:latest
services:
- docker:dind
script:
docker build -t llehouerou/dnsupdater:latest