From d9f635dbd3466a8a80e278198f4b723bad2d72d3 Mon Sep 17 00:00:00 2001
From: "hasan.bahjat" <hasan.bahjat@hiast.edu.sy>
Date: Tue, 14 Jan 2025 19:43:36 +0200
Subject: [PATCH] Delete .gitlab-ci.yml

---
 .gitlab-ci.yml | 42 ------------------------------------------
 1 file changed, 42 deletions(-)
 delete mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index d13747e..0000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-stages:
-  - install
-  - test
-  - lint
-
-variables:
-  # Define Python version
-  PYTHON_VERSION: "3.9"
-
-# Install dependencies
-install_dependencies:
-  stage: install
-  image: python:${PYTHON_VERSION}
-  script:
-    - python -m venv venv
-    - source venv/bin/activate
-    - pip install --upgrade pip
-    - pip install -r requirements.txt
-  artifacts:
-    paths:
-      - venv/
-
-# Run tests (using pytest, for example)
-run_tests:
-  stage: test
-  image: python:${PYTHON_VERSION}
-  script:
-    - source venv/bin/activate
-    - pytest --maxfail=1 --disable-warnings -q
-  dependencies:
-    - install_dependencies
-
-# Lint the code (using flake8, for example)
-lint_code:
-  stage: lint
-  image: python:${PYTHON_VERSION}
-  script:
-    - source venv/bin/activate
-    - pip install flake8
-    - flake8 . --max-line-length=120
-  dependencies:
-    - install_dependencies
-- 
2.21.0