diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a097286..f4b4e91 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,7 @@ image: golang:alpine variables: GO111MODULE: "on" + CGO_ENABLED: 0 before_script: - apk add git @@ -12,7 +13,7 @@ stages: unit_test: stage: test script: - - go test -race -v ./... + - go test -v ./... integration_test: stage: test @@ -20,5 +21,5 @@ integration_test: variables: - $BOT_TOKEN script: - - go test -tags integration -race -v ./... + - go test -tags integration -v ./...