diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..bca8d3e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +image: python:latest + + + +before_script: + - pip install poetry + + +pages: + script: + - cd cours + - poetry install + - poetry run python build.py + artifacts: + paths: + - cours/python/ + only: + - master