summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 09f3d72..3e238e3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,6 +3,7 @@
stages:
- test
- validate
+ - integration-test
test:
image: golang:alpine
@@ -37,3 +38,14 @@ validate:
gosec ./...
make check-yawning-obfs4
+ go mod tidy
+ git diff --exit-code -- go.mod go.sum
+
+integration-test:
+ image: debian
+ stage: test
+ script:
+ - apt update -y && apt install docker docker.io
+ - make integration
+ tags:
+ - linux