diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9be8381f405321e9f1660c857d73cd33617642c6..6ac224a62e35d687310471cb03c0da805aa3d372 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,6 +6,7 @@ stages:          # List of stages for jobs, and their order of execution
   - build
   - test
   - package
+  - install
 
 .build-env-job:
   stage: build
@@ -85,4 +86,14 @@ package-debian-job:
   artifacts:
     paths:
       # package name: validate-workflows_[VERSION]-[REVISION]_[ARCHITECTURE].deb
-      - "*.deb"
\ No newline at end of file
+      - "*.deb"
+
+install-debian-job:
+  stage: install
+  timeout: 5m
+  image:
+    name: "${IMAGE_TARGET_DEB}:latest"
+  tags:
+    - "docker"
+  script:
+    - apt install ./validate-workflows*.deb
\ No newline at end of file