diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..83d69173ab91123d2e983bd1a576c7681bde164a
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,23 @@
+stages:
+  - build
+  - test
+  - deploy
+
+build:
+  stage: build
+  script:
+    - echo "Building the application..."
+    - # Add build commands if necessary
+
+test:
+  stage: test
+  script:
+    - echo "Running tests..."
+    - # Add test commands if necessary
+
+deploy:
+  stage: deploy
+  script:
+    - echo "Deploying the application..."
+    - python -m pip install -r requirements.txt  
+    - python run.py