From 3b7297c2fe93b9495fa3ed5aea87bc2e5f187079 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Krop=C3=A1=C4=8Dek?= Date: Fri, 16 Feb 2024 15:55:12 +0100 Subject: [PATCH] start of gitlab-ci --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..96c2da0 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +stages: + - linting + - testing + - build + - staging + - production + +default: + image: python:3.12-slim + before_script: + - ... +pre-commit: + stage: linting