From d165dbf1ae4e6712cf343366e2642fcc159e268d Mon Sep 17 00:00:00 2001 From: Ali Nwegy Date: Fri, 1 Mar 2024 11:02:13 +0100 Subject: [PATCH] Fix: fixed typo in .gitlab-ci.yaml --- .gitlab-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 97ac659..2d59bc8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,8 +25,7 @@ build-job: # This job runs in the build stage, which runs first. image: python:3.11-alpine3.19 script: - echo "Installing dependencies..." - - ls - - pip install -r requirments.txt + - pip install -r requirements.txt - echo "Compiling the code..." - python -m build - echo "Compile complete."