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.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5631d943..fe193eb6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -75,6 +75,14 @@ test:1.13:
extends: .tests
image: golang:1.13
+race:
+ extends: .go-mod-cache
+ stage: test
+ needs: ['download deps']
+ script:
+ - echo "Running race detector"
+ - make race
+
check deps:
extends: .go-mod-cache
stage: test