From 0298a327f6c6ec6c135ee2d0a254dcd927905163 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Mart=C3=ADnez=20M=C3=A9ndez?= <alexander2198160@correo.uis.edu.co> Date: Thu, 27 Jul 2023 02:34:32 +0000 Subject: [PATCH] Delete .gitlab-ci.yml --- .gitlab-ci.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index e82a7f8..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,26 +0,0 @@ -# requiring the environment of python -image: python:3.9-buster - -before_script: - - pip install -r requirements.txt - -test: - stage: test - script: - - jupyter-book build . # build to public path - only: - - branches # this job will affect every branch except 'master' - except: - - master - -# the 'pages' job will deploy and build your site to the 'public' path -pages: - stage: deploy - script: - - jupyter-book build . # build to public path - artifacts: - paths: - - _build - expire_in: 10 mins - only: - - master # this job will affect only the 'master' branch -- GitLab