From 9a9c786cc5e417e19f392bc11f5bc5d73672c8fd Mon Sep 17 00:00:00 2001 From: plup <plup@plup.io> Date: Tue, 8 Jan 2019 23:09:55 +0100 Subject: [PATCH] test: added gitlab-ci file --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..2689ba25 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +--- +image: python:3 + +stages: + - hello + +say_hello: + stage: hello + script: + - echo 'Hello world!' + tags: + - sib -- GitLab