From 27bd30b4cca573b216b3003477da1424d59ef0cc Mon Sep 17 00:00:00 2001
From: maeries <8ij4neqiu@mozmail.com>
Date: Tue, 18 Mar 2025 19:47:27 +0100
Subject: [PATCH] non-working version of ci.yml

---
 .gitlab-ci.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9d8f526..b1772e0 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,9 +3,13 @@ image: python:latest
 # Functions that should be executed before the build script is run
 before_script:
   - python --version ; pip --version
+  - pip install virtualenv
+  - virtualenv venv
+  - source venv/bin/activate
+  - pip install -r requirements
 pages:
   script:
-    - python --version
+    - python main.py
   artifacts:
     paths:
       # The folder that contains the files to be exposed at the Page URL
-- 
GitLab