python-forensics-handbook/.gitlab-ci.yml

16 lines
280 B
YAML

image: python:3.7.3-alpine
pages:
script:
- apk --no-cache add make gcc musl-dev git
- pip install -r dev_requirements.txt
- pip install -r requirements.txt
- cd doc_src
- make html
- mv _build/html ../public
artifacts:
paths:
- public
only:
- master