16 lines
165 B
YAML
16 lines
165 B
YAML
image: golang:1.15.3
|
|
|
|
stages:
|
|
- test
|
|
- build
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- go test ./...
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- go build ./cmd/dnsupdater
|