From 717add6af6a7c63789c30af9dbd8c539c0ff20f6 Mon Sep 17 00:00:00 2001 From: Dimitri Merejkowsky Date: Wed, 12 Feb 2020 13:18:19 +0000 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitlab-ci.yml 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