gitlab ci

This commit is contained in:
Chapin Bryce 2019-06-12 20:29:09 -04:00
parent 840af11b5d
commit 697a52a1fe
1 changed files with 15 additions and 0 deletions

15
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,15 @@
image: alpine
pages:
script:
- apk --no-cache add py2-pip python-dev
- pip install -r dev_requirements.txt
- apk --no-cache add make
- cd docs
- make html
- mv _build/html/ public/
artifacts:
paths:
- public
only:
- master