diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..a7994ab308db178ff1f5767d24b4960a82930ebf --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,26 @@ +image: goblinogm/sphinx-builder + +cache: + paths: + - vendor + +test: + script: + - pip install -U -r requirements.txt + - cd docs + - make html + except: + - master + +pages: + script: + - pip install -U -r requirements.txt + - cd docs + - make html + - cd .. + - mv docs/_build/html public + artifacts: + paths: + - public + only: + - master diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..8141df787bcbcc84972dc32af1bbaf6fc398cda3 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +aiogremlin>=3.2.6