Skip to content
Snippets Groups Projects
Commit 0298a327 authored by Alexander Martínez Méndez's avatar Alexander Martínez Méndez
Browse files

Delete .gitlab-ci.yml

parent b1f7eec7
No related branches found
No related tags found
No related merge requests found
# 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment