From b5442b95b8caee66c6f8cae357502b87699c20d6 Mon Sep 17 00:00:00 2001
From: Georg Krause <mail@georg-krause.net>
Date: Fri, 1 Apr 2022 10:52:48 +0200
Subject: [PATCH] Initialize Pipeline, run linting

---
 .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..4a2d4dc
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,8 @@
+stages:
+  - lint
+
+lint:
+  stage: lint
+  image: python:3.10-alpine
+  before_script: pip install black
+  script: black --check .
-- 
GitLab