From 7252227fde36ba19bba2ce31ac4386ebe174226b Mon Sep 17 00:00:00 2001
From: Chetouane <elias.chetouane@univ-grenoble-alpes.fr>
Date: Tue, 16 Jan 2024 17:22:18 +0100
Subject: [PATCH] Ajout d'installation de git et python3 par "apt" (test)

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b578021..33f69c8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,8 +1,11 @@
 image: alpine:3.14
 
 build-dois-csv:
+  before_script:
+    - apt update
+    - apt install -y python3
+    - apt install -y git
   script:
-    - apt-get install -y python3
     - pip install pandas
     - pip install requests
     - pip install matplotlib
-- 
GitLab