dnsupdater/.gitlab-ci.yml

16 lines
165 B
YAML
Raw Permalink Normal View History

2020-10-27 12:07:21 +00:00
image: golang:1.15.3
2020-10-26 09:42:07 +00:00
stages:
2020-10-26 17:50:50 +00:00
- test
2020-10-26 09:42:07 +00:00
- build
2020-10-26 17:50:50 +00:00
test:
stage: test
2020-10-26 09:42:07 +00:00
script:
2020-10-26 17:50:50 +00:00
- go test ./...
2020-10-26 16:46:59 +00:00
2020-10-26 17:50:50 +00:00
build:
stage: build
2020-10-26 16:46:59 +00:00
script:
2020-10-27 12:07:21 +00:00
- go build ./cmd/dnsupdater