|
image: python:3.7.3-slim-stretch
|
|
|
|
pages:
|
|
script:
|
|
- apt update
|
|
- apt install -y build-essential
|
|
- pip3 install --upgrade pip
|
|
- pip3 install -r dev_requirements.txt
|
|
- cd docs
|
|
- make html
|
|
- mv _build/html public/
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|