From 846d662cf881cdea830bb1e94db7796f07549472 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20W=C3=B6lfer?= Date: Tue, 25 Jun 2019 12:13:17 +0200 Subject: [PATCH] Add CI --- .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..cba00e4 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,8 @@ +testing: + script: "make test" + +linting: + script: "make linting" + +typing: + script: "make typing"