prometheus-dnssec-exporter/.gitlab-ci.yml
2022-04-08 03:02:20 +02:00

20 lines
272 B
YAML

---
image: golang:1.18
before_script:
- go get -v
stages:
- build
- test
compile:
stage: build
script:
- go build
golangci-lint:
stage: test
script:
- go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.45.2
- golangci-lint run