Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml26
1 files changed, 20 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d640f08b..01732f45 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -86,19 +86,33 @@ download deps:
- go.mod
- go.sum
-verify:
- extends: .go-mod-cache
+cover:
stage: test
+ extends: .go-mod-cache
needs: ['download deps']
script:
- - make setup
- - make generate-mocks
- - make verify
- - make cover
+ - make setup
+ - make generate-mocks
+ - make cover
artifacts:
paths:
- coverage.html
+lint:
+ extends: .go-mod-cache
+ needs: ['download deps']
+ stage: test
+ image: registry.gitlab.com/gitlab-org/gitlab-build-images:golangci-lint-alpine
+ script:
+ # Write the code coverage report to gl-code-quality-report.json
+ # and print linting issues to stdout in the format: path/to/file:line description
+ - golangci-lint run --out-format code-climate | tee gl-code-quality-report.json | jq -r '.[] | "\(.location.path):\(.location.lines.begin) \(.description)"'
+ artifacts:
+ reports:
+ codequality: gl-code-quality-report.json
+ paths:
+ - gl-code-quality-report.json
+
test:1.12:
extends: .tests
image: golang:1.12