diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..39fd7cc708354ede899fecb30c3fe8b86ed44bb4
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,8 @@
+stages:   # List of stages for jobs, and their order of execution
+  - validate
+
+ansible-lint:   # Validate ansible configuration
+  stage: validate
+  image: registry.gitlab.com/pipeline-components/ansible-lint:latest
+  script:
+    - ansible-lint --show-relpath
\ No newline at end of file