From 5707024662ccc68d2500568ced7c1bf1c31b6f21 Mon Sep 17 00:00:00 2001 From: Klaas <kliffen@astron.nl> Date: Wed, 25 Jan 2023 15:51:12 +0100 Subject: [PATCH] Add CI including cookiecutter --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..46477f5 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,8 @@ +include: "{{cookiecutter.project_slug}}/.gitlab-cy.yml" + +default: + before_script: + - python --version # For debugging + - python -m pip install --upgrade pip + - pip install --upgrade cookiecutter tox twine + - cookiecutter --no-input --overwrite-if-exists -output-dir . -- GitLab