mirror of
https://gitlab.com/pnx-tools/dns-updater.git
synced 2026-06-16 05:54:56 +02:00
20 lines
260 B
YAML
20 lines
260 B
YAML
|
|
image: golang:1.19
|
|
|
|
stages:
|
|
- test
|
|
- build
|
|
|
|
unit-test:
|
|
stage: test
|
|
script:
|
|
- go test -v ./...
|
|
|
|
compile:
|
|
stage: build
|
|
script:
|
|
- mkdir -p build
|
|
- go build -o build/dnsupdater cmd/dnsupdater/main.go
|
|
artifacts:
|
|
paths:
|
|
- build
|